24 lines
618 B
C#
24 lines
618 B
C#
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();
|
|
}
|
|
}
|