Leandro Hernan Rojas 272f8330d7
Some checks failed
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Failing after 2m13s
Refactoring & Add Quotes
2025-05-13 12:08:38 -03:00

12 lines
322 B
C#

using Domain.Entities;
using phronCare.UIBlazor.Services.Sales.Quotes;
namespace Services.Sales.Quotes
{
public interface IQuoteService
{
Task<CreateQuoteResult> CreateFullQuoteAsync(EQuoteHeader quote, int formSeriesId);
// Aquí podrías agregar otros métodos: GetById, Search, etc.
}
}