Some checks failed
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Failing after 2m13s
12 lines
322 B
C#
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.
|
|
}
|
|
}
|