Files
IntegrySmartIndustry/Integry Smart Gateway/Core/RestConsumer/Controller/IWarehouseControllerService.cs
2020-10-26 10:19:19 +01:00

21 lines
596 B
C#

using Integry_Smart_Gateway.Core.RestConsumer.Entity.Model;
using System;
using System.Collections.Generic;
using System.Text;
using Integry_Smart_Gateway.Core.Orders.Model;
namespace Integry_Smart_Gateway.Core.RestConsumer.Controller
{
public interface IWarehouseControllerService
{
MtbColt SaveMtbColt(MtbColt mtbColt);
IList<MtbColt> SaveMtbColts(IList<MtbColt> mtbColt);
MtbColt CreateEmptyMtbColt(OrdineLavorazioneDTO ordineLavorazione);
void SaveCaratteristicaPartita<T>(string codMart, string partitaMag, string caratName, T value);
}
}