using Lux.Report.Data.DbModel;
namespace Lux.Report.Data.Services
{
public interface IReportService
{
#region Public Methods
///
/// Elenco completo Report da DB
///
///
Task> GetAllAsync();
///
/// Upsert record Report
///
///
///
Task UpsertAsync(ReportModel upsRec);
#endregion Public Methods
}
}