refactors
This commit is contained in:
20
ModVersionChecker/service/interfaces/IAppService.cs
Normal file
20
ModVersionChecker/service/interfaces/IAppService.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
namespace ModVersionChecker.service.interfaces
|
||||
{
|
||||
public interface IAppService
|
||||
{
|
||||
// List<App> GetAppsById(List<App> apps);
|
||||
// bool SaveApps(List<App> apps);
|
||||
// App? GetAppById(string id);
|
||||
|
||||
bool CreateApp(App? app);
|
||||
bool UpdateApp(App? app);
|
||||
|
||||
bool DeleteApp(App? app);
|
||||
Task<List<App>> GetAndUpdateCurrentApps();
|
||||
|
||||
App CheckAppStatus(App app);
|
||||
void CheckAllApps();
|
||||
|
||||
List<App> PurgeExisitingApps(List<App> apps);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user