|
|
|
|
using Admin.Core.IRepository;
|
|
|
|
|
using Admin.Core.Service;
|
|
|
|
|
using Admin.Core.IService;
|
|
|
|
|
using Admin.Core.Model;
|
|
|
|
|
using Admin.Core.Model.Model_New;
|
|
|
|
|
|
|
|
|
|
namespace Admin.Core.Service
|
|
|
|
|
{
|
|
|
|
|
public class PrintOrderInfoServices : BaseServices<PrintOrderInfo>, IPrintOrderInfoServices
|
|
|
|
|
{
|
|
|
|
|
private readonly IBaseRepository<PrintOrderInfo> _dal;
|
|
|
|
|
public PrintOrderInfoServices(IBaseRepository<PrintOrderInfo> dal)
|
|
|
|
|
{
|
|
|
|
|
this._dal = dal;
|
|
|
|
|
base.BaseDal = dal;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|