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