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.

26 lines
912 B
C#

using Estsh.Core.Model.ExcelModel;
using Estsh.Core.Model.Result;
using Estsh.Core.Models;
using Estsh.Core.Util;
using System.Collections;
using System.Data;
namespace Estsh.Core.Services.IServices
{
public interface IPurchaseScheduleSingleService : IBaseService<SysStock>
{
public Hashtable GetQuery(string aWhere);
public List<PurchaseScheduleSingle> getTableListByPage(string aWhere);
public Hashtable GetStockDetail(string orderNo, string typeName);
public List<KeyValueResult> GetPart(string part_no);
public List<KeyValueResult> GetVendor(string key);
public List<KeyValueResult> GetFactory();
public List<KeyValueResult> GetType();
public bool UpdateIsClose(string ruid);
public bool ChangeDetailStatus(bool status, DataRow dr);
public bool DeleteDetail(DataRow dr);
public string GetSysBase();
}
}