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.
20 lines
726 B
C#
20 lines
726 B
C#
using Estsh.Core.Model.Result;
|
|
using Estsh.Core.Models;
|
|
using Estsh.Core.Util;
|
|
using System.Collections;
|
|
|
|
namespace Estsh.Core.Services.IServices
|
|
{
|
|
public interface IPurchasePrintService : IBaseService<SysStock>
|
|
{
|
|
public List<SysStock> GetListByPage(String stage_name, Pager pager, String direction, String sort);
|
|
public List<KeyValueResult> getBuyNo();
|
|
public String getOrderNo(string orderType, string orderPrefix);
|
|
public List<dynamic> getPartNo(String buyNo);
|
|
public Hashtable saveBuyOrder(Hashtable ht);
|
|
public Hashtable deleteBuyOrder(Hashtable ht);
|
|
public Hashtable EnableData(Hashtable ht);
|
|
public Hashtable DisableData(Hashtable ht);
|
|
}
|
|
}
|