using Estsh.Core.Model.Result; using Estsh.Core.Models; using Estsh.Core.Repositories; using System.Collections; namespace Estsh.Core.Repository.IRepositories { public interface ICheckOrderCreateRepository : IBaseRepository { public Hashtable getListByPage(string cbChkCommand); public List GetChkCommandList(); public List CreateChkNo(string cbChkCommand, string userId); } }