phronCare/Core/Interfaces/Stock/IExpeditionDom.cs

13 lines
372 B
C#
Raw Normal View History

2025-09-04 18:15:15 -03:00
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);
}
}