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.

20 lines
619 B
C#

using Estsh.Core.Models;
using Estsh.Core.Util;
using System.Collections;
namespace Estsh.Core.Services.IServices
{
public interface IDefectReasonService : IBaseService<SysReason>
{
public List<Models.SysWebGridColumn> GetGridItems();
public Hashtable GetDefectReasonWhere(Pager pager);
public bool UpdateById(SysReason param);
public bool AddDefect(SysReason htParams);
public Hashtable GetReasonById(int reason_id);
public bool DeleteReasonById(int reason_id);
public int EnableData(String ids);
public int DisableData(String ids);
}
}