27 lines
757 B
C#
27 lines
757 B
C#
using MP.Data.DbModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MP.Data.Repository.Dossier
|
|
{
|
|
public interface IDossierRepository
|
|
{
|
|
#region Public Methods
|
|
|
|
Task<bool> DossiersDeleteRecordAsync(DossierModel currRec);
|
|
|
|
Task<List<DossierModel>> DossiersGetLastFiltAsync(string IdxMacchina, string CodArticolo, DateTime DtStart, DateTime DtEnd, int MaxRec);
|
|
|
|
Task<bool> DossiersInsertAsync(DossierModel newRec);
|
|
|
|
Task<bool> DossiersTakeParamsSnapshotLastAsync(string idxMacchina, DateTime dtMin, DateTime dtMax);
|
|
|
|
Task<bool> DossiersUpdateValoreAsync(DossierModel editRec);
|
|
|
|
Task<List<string>> ArticleWithDossierAsync();
|
|
|
|
#endregion
|
|
}
|
|
}
|