2025-05-05 22:50:02 -03:00
|
|
|
|
using Domain.Entities;
|
|
|
|
|
|
|
|
|
|
|
|
namespace phronCare.UIBlazor.Services.Lookups
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface ISalesLookupService
|
|
|
|
|
|
{
|
|
|
|
|
|
Task<IEnumerable<ELookUpItem>> SearchCustomersAsync(string filtro);
|
|
|
|
|
|
Task<IEnumerable<ELookUpItem>> SearchInstitutionsAsync(string filtro);
|
|
|
|
|
|
Task<IEnumerable<ELookUpItem>> SearchPatientsAsync(string filtro);
|
|
|
|
|
|
Task<IEnumerable<ELookUpItem>> SearchPeopleAsync(string filtro);
|
|
|
|
|
|
Task<IEnumerable<ELookUpItem>> SearchProfessionalsAsync(string filtro);
|
|
|
|
|
|
Task<IEnumerable<ELookUpItem>> SearchBussinessUnitsAsync(string filtro);
|
|
|
|
|
|
Task<IEnumerable<EProductLookupItem>> SearchProductsAsync(string filtro);
|
|
|
|
|
|
Task<IEnumerable<EAdjustmentReason>> GetAdjustmentReasonsAsync();
|
2025-05-06 15:58:35 -03:00
|
|
|
|
Task<IEnumerable<ETaxType>> GetTaxTypesAsync();
|
2025-05-23 12:27:56 -03:00
|
|
|
|
Task<IEnumerable<ELookUpItem>> GetPaymentTermsAsync();
|
2025-08-18 00:47:37 -03:00
|
|
|
|
Task<IEnumerable<ELookUpItem>> SearchApprovedQuotesAsync(string filtro);
|
2025-05-05 22:50:02 -03:00
|
|
|
|
}
|
|
|
|
|
|
}
|