using Dapper; using Estsh.Core.Model.ExcelModel; using Estsh.Core.Model.Result; using Estsh.Core.Models; using Estsh.Core.Repositories; using Estsh.Core.Util; using System.Collections; namespace Estsh.Core.Repository.IRepositories { public interface IProdunctFinishedRepository : IBaseRepository { public bool IsCartonNoExists(string carton_no); public string ProductShipping(string serial_number, string remark, string finished, int UserID, string doorNO, string reason); public List GetAll(string where, Pager pager, ref int totalCount); public List getTableListByPage(string where, Pager pager, ref int totalCount); } }