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
643 B
C#
19 lines
643 B
C#
using Estsh.Core.Models;
|
|
using Estsh.Core.Services;
|
|
using Estsh.Core.Util;
|
|
using System.Collections;
|
|
using System.Data;
|
|
|
|
namespace Estsh.Core.Services.IServices
|
|
{
|
|
public interface IOrderManageService : IBaseService<SapDspo>
|
|
{
|
|
public Hashtable getQueryMainList(String weekNo, String txtStartDate, String txtEndDate, Pager pager, int empId, string status, String enabled);
|
|
public Hashtable getQueryDetailList(String weekNo);
|
|
public Hashtable orderRelease(String weekNo);
|
|
public int deleteOrder(String ids);
|
|
public int EnableData(String ids);
|
|
public int DisableData(String ids);
|
|
}
|
|
}
|