Availability Checker #1464 #865

This commit is contained in:
Jamie.Rees 2017-08-24 16:15:39 +01:00
parent 9ed6fd09a4
commit 385d206287
24 changed files with 255 additions and 82 deletions

View file

@ -1,4 +1,5 @@
using System.Linq;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.EntityFrameworkCore;
using Ombi.Store.Context;
@ -46,5 +47,10 @@ namespace Ombi.Store.Repository.Requests
{
await Db.SaveChangesAsync();
}
}
public async Task Save()
{
await Db.SaveChangesAsync();
}
}
}