using Microsoft.Data.SqlClient; using MP.Data.DbModels; using System.Collections.Generic; using System.Data; using System.Linq; using System.Threading.Tasks; namespace MP.Data.Repository.MpMon { public interface IMpMonRepository { Task> ConfigGetAllAsync(); Task> MacchineGetAllAsync(); Task> MacchineGetFiltAsync(string codGruppo); Task> MseGetAllAsync(int maxAge = 2000); } }