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 ICheckFreezeRepository : IBaseRepository { public Hashtable getListByPage(string cbChkCommand, int userId); public List GetChkCommandList(); public List Freeze(string cbChkCommand, string userId); public List Thaw(string cbChkCommand, string userId); } }