You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.7 KiB
C#
49 lines
1.7 KiB
C#
using Estsh.Core.Base;
|
|
using Estsh.Core.Model.EnumUtil;
|
|
using Estsh.Core.Models;
|
|
using Estsh.Core.Repositories;
|
|
using Newtonsoft.Json.Linq;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Estsh.Core.Wms.IRepositories
|
|
{
|
|
public interface IInterfaceMasterRepository : IBaseRepository<SapPt>
|
|
{
|
|
public List<SapPt> GetMaterialMasterInfo();
|
|
public bool InsertMaterialMasterInfo(List<SapPt> sapPt);
|
|
|
|
public List<SapSu> GetSupplierMasterInfo();
|
|
public bool InsertSupplierMasterInfo(List<SapSu> sapSu);
|
|
|
|
public List<SapCu> GetCustomerMasterInfo();
|
|
public bool InsertCustomerMasterInfo(List<SapCu> sapCu);
|
|
|
|
public List<SapPtcpt> GetCustomerItemMasterInfo();
|
|
public bool InsertCustomerItemMasterInfo(List<SapPtcpt> sapPtcpt);
|
|
|
|
public List<SapBom> GetBomMasterInfo();
|
|
public bool InsertBomMasterInfo(List<SapBom> sapBom);
|
|
|
|
public List<SapAsn> GetASNDataInfo();
|
|
public bool InsertASNDataInfo(List<SapAsn> sapAsn);
|
|
public List<SapDspo> GetDSPODataInfo();
|
|
public bool InsertPODataInfo(List<SapDspo> sapDspo);
|
|
|
|
public List<SapDn> GetSalesAndDeliveryPlanInfo();
|
|
public bool InsertSalesAndDeliveryPlanInfo(List<SapDn> sapDn);
|
|
|
|
public List<SapMisco> GetSporadicEntryAndExitInfo();
|
|
public bool InsertSporadicEntryAndExitInfo(List<SapMisco> sapMiscos);
|
|
|
|
public List<SapCyco> GetInventoryListInfo();
|
|
public bool InsertInventoryListInfo(List<SapCyco> sapCycos);
|
|
|
|
public List<SapDifo> GetInventoryDifferenceAdjustmentInfo();
|
|
public bool InsertInventoryDifferenceAdjustmentInfo(List<SapDifo> sapDifos);
|
|
}
|
|
}
|