Completamento migrazione repository MpSpecController: aggiunti MpMon, MpVoc, MpLand; migrati TranslateSrv, StatusData, LandDataService, TranslateSrv, MonDataFeeder, TabDataFeeder; 0 errori build
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
using Microsoft.Extensions.Configuration;
|
||||
using MP.Data.DbModels;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MP.Data.Repository.MpLand
|
||||
{
|
||||
public interface IMpLandRepository
|
||||
{
|
||||
Task<List<DbSizeModel>> AllDbInfoAsync();
|
||||
|
||||
Task<List<ConfigModel>> ConfigGetAllAsync();
|
||||
|
||||
Task<List<RemoteRebootLogModel>> RemRebootLogGetAllAsync();
|
||||
|
||||
Task<List<RemoteRebootLogModel>> RemRebootLogGetLastAsync();
|
||||
|
||||
Task<List<RemoteRebootLogModel>> RemRebootLogGetLastNoMaccAsync();
|
||||
|
||||
Task<List<MacchineModel>> MacchineGetAllAsync();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user