21 lines
510 B
C#
21 lines
510 B
C#
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<List<ConfigModel>> ConfigGetAllAsync();
|
|
|
|
Task<List<MacchineModel>> MacchineGetAllAsync();
|
|
|
|
Task<List<MacchineModel>> MacchineGetFiltAsync(string codGruppo);
|
|
|
|
Task<List<MappaStatoExplModel>> MseGetAllAsync(int maxAge = 2000);
|
|
}
|
|
}
|