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
461 B
C#

using Estsh.Core.Model.Result;
using Estsh.Core.Models;
using Estsh.Core.Repositories;
using System.Collections;
namespace Estsh.Core.Repository.IRepositories
{
public interface ICheckOrderCreateRepository : IBaseRepository<GCheckOrderMain>
{
public Hashtable getListByPage(string cbChkCommand);
public List<KeyValueResult> GetChkCommandList();
public List<dynamic> CreateChkNo(string cbChkCommand, string userId);
}
}