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.

26 lines
682 B
C#

using Estsh.Core.Models;
using System;
using System.Collections;
using Estsh.Core.Repositories;
namespace Estsh.Core.Repository.IRepositories
{
public interface IBaseManagerRepository : IBaseRepository<SysBase>
{
public Hashtable getListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy);
public int SaveBase(SysBase parames);
public int EditBase(SysBase parames);
public int deleteBase(string parame_id);
public int EnableData(String Ids);
public int DisableData(String Ids);
public List<SysBase> getBaseList(string strWhere);
public List<SysBase> getList(string paramId);
}
}