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.

22 lines
735 B
C#

using Estsh.Core.Model.ExcelModel;
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 IStockAdjustDefineRepository : IBaseRepository<SysStock>
{
public List<SysStock> GetAllData(string _where);
public bool MoveStock(string LotNo);
public bool IsExist(string carton_no);
public bool Exist(string locateID);
public void UpdateLocateEmpty(string locateID);
public string AdjustStock(List<StockAdjustDefine> dt, int userID);
public bool TransType(string lotNo);
public bool update(string qty, string lot_no);
}
}