Inizia code assisted review (non compila...)
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
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);
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user