Files
lux/EgwCoreLib.Lux.Data/Services/Production/IProductionBatchService.cs
T
2026-03-25 08:24:25 +01:00

16 lines
461 B
C#

namespace EgwCoreLib.Lux.Data.Services.Production
{
public interface IProductionBatchService
{
#region Public Methods
/// <summary>
/// Creazione di un Batch con relativo Tag e info x creazione ODL correlati
/// </summary>
/// <param name="newRec"></param>
/// <returns></returns>
Task<ProductionBatchModel?> CreateAsync(ProductionBatchModel entity);
#endregion Public Methods
}
}