using Estsh.Core.Model.ExcelModel; using Estsh.Core.Model.Result; using Estsh.Core.Models; using Estsh.Core.Util; using System.Collections; using System.Data; namespace Estsh.Core.Services.IServices { public interface IStockAdjustDefineService : IBaseService { public List GetAllData(string _where); public bool MoveStock(string LotNo); public bool IsExist(string carton_no); public bool Exist(string locateID); public void UpdateLocateEmpty(string locateID); public string AdjustStock(List dt, int userID); public bool TransType(string lotNo, ref DataTable dt); public bool update(string qty, string lotNo); public Hashtable ReadExcelFile(List inputStream, int userId); } }