27 lines
568 B
C#
27 lines
568 B
C#
using Lux.Report.Data.DbModel;
|
|
|
|
namespace Lux.Report.Data.Services
|
|
{
|
|
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
|
|
}
|
|
}
|