using System.Collections; using Estsh.Core.Models; using Estsh.Core.Repository.IRepositories; using Estsh.Core.Services.IServices; using Estsh.Core.Model.Result; /*************************************************************************************************** * * 更新人:sitong.dong * 描述:盘点单生产 * 修改时间:2022.06.22 * 修改日志:系统迭代升级 * **************************************************************************************************/ namespace Estsh.Core.Services { /// /// 盘点单生产 /// public class CheckOrderCreateService : BaseService, ICheckOrderCreateService { private readonly ICheckOrderCreateRepository repository; public CheckOrderCreateService(ICheckOrderCreateRepository _repository) : base(_repository) { repository = _repository; } /// /// 根据分页条件获取分页菜单数据 /// /// /// /// /// /// public Hashtable getCheckOrderCreateListByPage(string cbChkCommand) { Hashtable result = new Hashtable(); result = repository.getListByPage(cbChkCommand); return result; } /// ///盘点单集合 /// /// 数据集 public List GetChkCommandList() { return repository.GetChkCommandList(); } /// ///盘点单生成 /// /// 数据集 public List CreateChkNo(string cbChkCommand, string userId) { return repository.CreateChkNo(cbChkCommand, userId); } } }