using Estsh.Core.Model.Result; using Estsh.Core.Models; using Estsh.Core.Repositories; using Estsh.Core.Util; using System.Collections; using System.Data; namespace Estsh.Core.Repository.IRepositories { public interface IDefectCodeRepository : IBaseRepository { public Hashtable GetDefectCodeWhere(string wheres, Pager pager); public bool AddDefect(SysDefect htParames); public bool UpdateDefect(SysDefect htParames); public bool DeleteDefectById(int defect_id); public int EnableData(String Ids); public int DisableData(String Ids); } }