using Estsh.Core.Models; using Estsh.Core.Util; using System.Collections; namespace Estsh.Core.Services.IServices { public interface IDefectCodeService : IBaseService { public Hashtable GetDefectCodeWhere(Pager pager); public bool UpdateById(SysDefect param); public bool AddDefect(SysDefect htParams); public Hashtable GetDefectById(int defect_id); public bool DeleteDefectById(int defect_id); public int EnableData(String ids); public int DisableData(String ids); } }