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> AllDbInfoAsync(); Task> ConfigGetAllAsync(); Task> RemRebootLogGetAllAsync(); Task> RemRebootLogGetLastAsync(); Task> RemRebootLogGetLastNoMaccAsync(); Task> MacchineGetAllAsync(); } }