using Dapper; using Estsh.Core.Model.Result; using Estsh.Core.Models; using Estsh.Core.Repositories; using System.Collections; using System.Data; namespace Estsh.Core.Repository.IRepositories { public interface ICheckStockDiffRepository : IBaseRepository { 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); } }