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.
17 lines
653 B
C#
17 lines
653 B
C#
using Estsh.Core.Model.ExcelModel;
|
|
using Estsh.Core.Model.Result;
|
|
using Estsh.Core.Models;
|
|
using Estsh.Core.Util;
|
|
using System.Collections;
|
|
|
|
namespace Estsh.Core.Services.IServices
|
|
{
|
|
public interface IProdunctFinishedService : IBaseService<GSnMisc>
|
|
{
|
|
public bool IsCartonNoExists(string carton_no);
|
|
public string ProductShipping(string serial_number, string remark, string finished, int UserID, string doorNO, string reason);
|
|
public List<GSnMisc> GetAll(string aWhere, Pager pager, ref int totalCount);
|
|
public List<ProdunctFinished> getTableListByPage(string aWhere, Pager pager, ref int totalCount);
|
|
}
|
|
}
|