using Estsh.Core.Model.Result; using Estsh.Core.Models; using System.Collections; namespace Estsh.Core.Services.IServices { public interface ICheckStockDiffService : IBaseService { public Hashtable GetTotalData(string orderNo, string partNo); public List GetChkNo(string dtpDate); public List GetDiffType(); public List GetPartNo(); public List CreateChkNo(string cbChkCommand, string userId); } }