using Estsh.Core.Model.Result; using Estsh.Core.Models; using System.Collections; namespace Estsh.Core.Services.IServices { public interface ICheckFreezeService : IBaseService { public Hashtable getCheckFreezeListByPage(string cbChkCommand, int userId); public List GetChkCommandList(); public List Freeze(string cbChkCommand, string userId); public List Thaw(string cbChkCommand, string userId); } }