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.
23 lines
926 B
C#
23 lines
926 B
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 ICustomerOrderRepository : IBaseRepository<SysPartCustOrder>
|
|
{
|
|
public List<SysPartCustOrder> getList(string strWhere, string filedOrder);
|
|
public Hashtable getListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy);
|
|
public int saveCustomerOrder(SysPartCustOrder htParams);
|
|
public int updateCustomerOrder(SysPartCustOrder htParams);
|
|
public int deleteCustomerOrder(String part_id);
|
|
public int EnableData(String Ids);
|
|
public int DisableData(String Ids);
|
|
public List<KeyValueResult> getSelectCustomerOrder();
|
|
public Hashtable getTableListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy);
|
|
}
|
|
}
|