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 IMESOD10Repository : IBaseRepository { public List getList(string strWhere, string filedOrder); public Hashtable getListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy); public int saveMESOD10(SysPartCustOrder htParams); public int updateMESOD10(SysPartCustOrder htParams); public int deleteMESOD10(String part_id); public List GetTerminalName(); public List getTableListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy); } }