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.
25 lines
1005 B
C#
25 lines
1005 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 IPurchaseNoteRepository : IBaseRepository<SysStock>
|
|
{
|
|
public string GetServerDateTime(string flag);
|
|
public List<SysVendor> QuerySupplierInfo(string vendorCode);
|
|
public List<SysIssuser> QueryOrderInfo(string orderName);
|
|
public string GetApDateTime(int flag);
|
|
public string QueryPartId(string partNo);
|
|
public int QueryPartSnp(string partId);
|
|
public string QueryItemId(string itemNo);
|
|
public bool ValidatePurNo(string purNo, string partNo);
|
|
public string GetFactoryId(int userID);
|
|
public string GetOrderNo(string item, string prefix);
|
|
public string DataSaveTransact(DataTable dtWeekSchedule, DataTable dtDaySchedule, int userID);
|
|
public string GetCartonNo(string partNo, string lotNo, int seq);
|
|
}
|
|
}
|