phronCare/Core/Interfaces/Stock/IExpeditionDom.cs
Leandro Hernan Rojas 6e61b7b598
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 10m12s
Update Expeditions Print
2025-09-04 18:15:15 -03:00

13 lines
372 B
C#

using Domain.Dtos.Stock;
using Domain.Entities;
namespace Core.Interfaces.Stock
{
// 1.2 Domain (Core)
public interface IExpeditionDom
{
Task<(int Id, string ExpeditionNumber)> CreateAndIssueAsync(ELSExpeditionHeader header, IEnumerable<ELSExpeditionDetail> details, int formSeriesId);
Task<ExpeditionDto?> GetDtoByIdAsync(int id);
}
}