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
510 B
C#
16 lines
510 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 IROSerchPrintRepository : IBaseRepository<SysStock>
|
|
{
|
|
public Hashtable getListByPage(Hashtable requestHt, int PageSize, int PageIndex, string direction, string sort);
|
|
public List<KeyValueResult> getLocateList();
|
|
public List<SysStock> getCartonListByRuid(String ruids);
|
|
}
|
|
}
|