All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 7m16s
29 lines
1.4 KiB
C#
29 lines
1.4 KiB
C#
using Domain.Dtos;
|
|
using Domain.Entities;
|
|
using Domain.Generics;
|
|
|
|
namespace Models.Interfaces
|
|
{
|
|
public interface IQuoteDom
|
|
{
|
|
#region Presupuestos
|
|
//Task<PagedResult<EQuoteHeader>> GetAllQuotesAsync(int page = 1, int pageSize = 50);
|
|
//Task<EQuoteHeader?> GetQuoteByIdAsync(int id);
|
|
//Task<IEnumerable<EQuoteHeader>> GetQuotesByCustomerAsync(int customerId);
|
|
Task<PagedResult<QuoteDto>> SearchAsync(int? customerId, string? customerText, string? quoteNumber, int? professionalId, string? professionalText, int? institutionId, string? institutionText, int? patientId, string? patientText, DateTime? issueDateFrom, DateTime? issueDateTo, string? status, int page = 1, int pageSize = 50);
|
|
//Task UpdateQuoteAsync(EQuoteHeader quote);
|
|
//Task DeleteQuoteAsync(int id);
|
|
#endregion
|
|
#region Exportación
|
|
//Task<byte[]> ExportFilteredQuotesToExcelAsync(QuoteSearchParams searchParams);
|
|
#endregion
|
|
#region Guardado completo de presupuesto (encabezado + detalles + roles + ajustes + impuestos)
|
|
Task<(int Id, string Quotenumber)> CreateFullQuoteAsync(EQuoteHeader quote, int formSeriesId);
|
|
Task<QuoteDto?> GetDtoByIdAsync(int id);
|
|
#endregion
|
|
#region Autorización
|
|
Task<bool> AuthorizeQuoteAsync(int quoteId, List<QuoteAuthorizationDto> items);
|
|
#endregion
|
|
|
|
}
|
|
} |