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.
19 lines
672 B
C#
19 lines
672 B
C#
using Estsh.Core.Models;
|
|
using Estsh.Core.Util;
|
|
using System.Collections;
|
|
|
|
namespace Estsh.Core.Services.IServices
|
|
{
|
|
public interface IOrgService : IBaseService<SysProgramFunOp>
|
|
{
|
|
public Hashtable getMenuListByPage(String factoryCode, String factoryName, string enabled, Pager pager, String direction, String sort);
|
|
public int SaveOrg(SysFactory htParams);
|
|
public Hashtable getRow(String factory_id);
|
|
public int UpdateOrg(SysFactory htParams);
|
|
public int DeleteOrg(String ids);
|
|
public int EnableData(String ids);
|
|
public int DisableData(String ids);
|
|
public bool IsExistFac(string facCode);
|
|
}
|
|
}
|