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.

19 lines
606 B
C#

using Dapper;
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 ICheckStockDiffRepository : IBaseRepository<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);
}
}