25 lines
540 B
C#
25 lines
540 B
C#
namespace EgwCoreLib.Lux.Data.Services.Report
|
|
{
|
|
public interface IReportService
|
|
{
|
|
#region Public Methods
|
|
|
|
|
|
/// <summary>
|
|
/// Elenco completo Report da DB
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
Task<List<ReportModel>> GetAllAsync();
|
|
|
|
|
|
/// <summary>
|
|
/// Upsert record Report
|
|
/// </summary>
|
|
/// <param name="updRec"></param>
|
|
/// <returns></returns>
|
|
Task<bool> UpsertAsync(ReportModel upsRec);
|
|
|
|
#endregion Public Methods
|
|
}
|
|
}
|