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

using Estsh.Core.Model.Result;
using Estsh.Core.Models;
using Estsh.Core.Repositories;
using System.Collections;
using System.Data;
namespace Estsh.Core.Repository.IRepositories
{
public interface IPurchasePrintRepository : IBaseRepository<SysStock>
{
public List<SysStock> getListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy);
public List<KeyValueResult> getBuyNo();
public String GetOrderNo(string orderType, string orderPrefix);
public List<dynamic> getPartNo(String buyNo);
public bool saveBuyOrder(Hashtable htData);
public bool deleteBuyOrder(Hashtable htData);
public bool EnableData(Hashtable htData);
public bool DisableData(Hashtable htData);
public List<GBuyDayFact> getBuyOrder(Hashtable htData);
public List<dynamic> getBuyOrderStock(Hashtable htData);
}
}