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.
20 lines
856 B
C#
20 lines
856 B
C#
using Estsh.Core.Base;
|
|
using Estsh.Core.Model.Result;
|
|
using Estsh.Core.Models;
|
|
using Estsh.Core.Util;
|
|
using System.Collections;
|
|
|
|
namespace Estsh.Core.Services.IServices
|
|
{
|
|
public interface ISingleWarePrintDefineService : IBaseService<BaseEntity>
|
|
{
|
|
public List<SapMisco> getDPSListByPage(String where, String partNo_search, String option3, String locate_name,
|
|
String enabled_search, Pager pager, String direction, String sort);
|
|
public int getMenuCount(String where, String partNo_search, String option3, String locate_name,
|
|
String enabled_search, Pager pager, String direction, String sort);
|
|
public List<KeyValueResult> GetTaskList();
|
|
public List<SapMisco> GetOrderDetail(String order_no, Pager pager, String direction, String sort);
|
|
public int GetOrderCount(String order_no);
|
|
}
|
|
}
|