16 lines
461 B
C#
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
|
|
}
|
|
} |