2025-05-07 18:35:49 -03:00
|
|
|
|
using Domain.Entities;
|
2025-05-13 12:08:38 -03:00
|
|
|
|
using phronCare.UIBlazor.Services.Sales.Quotes;
|
2025-05-07 18:35:49 -03:00
|
|
|
|
|
2025-05-13 12:08:38 -03:00
|
|
|
|
namespace Services.Sales.Quotes
|
2025-05-07 18:35:49 -03:00
|
|
|
|
{
|
|
|
|
|
|
public interface IQuoteService
|
|
|
|
|
|
{
|
|
|
|
|
|
Task<CreateQuoteResult> CreateFullQuoteAsync(EQuoteHeader quote, int formSeriesId);
|
|
|
|
|
|
// Aquí podrías agregar otros métodos: GetById, Search, etc.
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|