leandro e02d9b1ac0
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (pull_request) Successful in 8m30s
feat(sales): incorporar servicio UI para consumo de Delivery Note
closes #25
2026-03-19 18:23:26 -03:00

12 lines
358 B
C#

using Domain.Dtos.Sales;
namespace phronCare.UIBlazor.Services.Sales.DeliveryNotes
{
public interface IDeliveryNoteService
{
Task<DeliveryNoteDto?> GetByIdAsync(int id);
Task<DeliveryNoteDto?> GetByDeliveryNoteNumberAsync(string deliveryNoteNumber);
Task<IEnumerable<DeliveryNoteDto>> GetByQuoteIdAsync(int quoteId);
}
}