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.
16 lines
530 B
C#
16 lines
530 B
C#
using Estsh.Core.Model.Result;
|
|
using Estsh.Core.Models;
|
|
using System.Collections;
|
|
|
|
namespace Estsh.Core.Services.IServices
|
|
{
|
|
public interface ICheckStockDiffService : IBaseService<WmsCheckStockList>
|
|
{
|
|
public Hashtable GetTotalData(string orderNo, string partNo);
|
|
public List<KeyValueResult> GetChkNo(string dtpDate);
|
|
public List<KeyValueResult> GetDiffType();
|
|
public List<KeyValueResult> GetPartNo();
|
|
public List<dynamic> CreateChkNo(string cbChkCommand, string userId);
|
|
}
|
|
}
|