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.
30 lines
1.4 KiB
C#
30 lines
1.4 KiB
C#
using Estsh.Core.Model.ExcelModel;
|
|
using Estsh.Core.Model.Result;
|
|
using Estsh.Core.Models;
|
|
using Estsh.Core.Repositories;
|
|
using System.Collections;
|
|
|
|
namespace Estsh.Core.Repository.IRepositories
|
|
{
|
|
public interface ITrayRepository : IBaseRepository<GTray>
|
|
{
|
|
public Hashtable getTrayByPage(int PageSize, int PageIndex, string strWhere, string OrderBy);
|
|
public Hashtable getTrayByPageToList(int PageSize, int PageIndex, string strWhere, string OrderBy);
|
|
public Hashtable getTableListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy);
|
|
public List<KeyValueResult> getTrayType();
|
|
public int saveTrayInfo(GTray htParams);
|
|
public bool existTray(string tray_code);
|
|
public List<GTray> GetTrayById(string tray_id);
|
|
public int updateTrayInfo(GTray htParams);
|
|
public int deleteTray(String tray_id);
|
|
public int EnableData(String ids);
|
|
public int DisableData(String ids);
|
|
public Hashtable getTrayDetailOfPager(int PageSize, int PageIndex, string strWhere, string OrderBy);
|
|
public Hashtable getTrayDetailToList(int PageSize, int PageIndex, string strWhere, string OrderBy);
|
|
public List<GTrayDetail> GetTrayDetailByGuid(string guid);
|
|
public int saveTrayDetailInfo(GTrayDetail htParams);
|
|
public int updateTrayDetailInfo(GTrayDetail htParams);
|
|
public int deleteTrayDetail(String guid);
|
|
}
|
|
}
|