using Dapper; using Estsh.Core.Base; using Estsh.Core.Model.Result; using Estsh.Core.Models; using Estsh.Core.Repositories; namespace Estsh.Core.Wms.IRepositories { public interface IERPInterfaceRepository : IBaseRepository { public WmsInterfaceResult MaterialMasterMethod(string sid, List sapPt); public WmsInterfaceResult SupplierMasterMethod(string sid, List sapSu); public WmsInterfaceResult CustomerMasterMethod(string sid, List sapCu); public WmsInterfaceResult CustomerItemMasterMethod(string sid, List sapPtcpt); public WmsInterfaceResult BomMasterMethod(string sid, List sapBom); public WmsInterfaceResult ASNDataMethod(string sid, List sapAsn); public WmsInterfaceResult PODataMethod(string sid, List sapDspo); public WmsInterfaceResult SalesAndDeliveryPlanMethod(string sid, List sapDns); public WmsInterfaceResult SporadicEntryAndExitMethod(string sid, List sapMiscos); public WmsInterfaceResult InventoryListMethod(string sid, List sapCycos); public WmsInterfaceResult InventoryDifferenceAdjustmentMethod(string sid, List sapDifos); } }