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
778 B
C#

using Estsh.Core.Models;
using Estsh.Core.Util;
using System.Collections;
namespace Estsh.Core.Services.IServices
{
public interface IBaseManagerService : IBaseService<SysBase>
{
public Hashtable getListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy);
public Hashtable getListByPage(String BaseValue, String BaseName, String enabled, Pager pager, String direction, String sort);
public int SaveBase(SysBase parames);
public int EditBase(SysBase parames);
public int deleteBase(string parame_id);
public List<SysBase> getBaseList(string strWhere);
public int EnableData(String ids);
public int DisableData(String ids);
public List<SysBase> getList(string paramId);
}
}