You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
624 B
C#

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 IDefectReasonRepository : IBaseRepository<SysReason>
{
public Hashtable GetDefectReasonWhere(string wheres, Pager pager);
public bool AddDefectReason(SysReason htParames);
public bool UpdateReason(SysReason htParames);
public bool DeleteReasonById(int reason_id);
public int EnableData(String Ids);
public int DisableData(String Ids);
}
}