Пример #1
0
 public InspectAcceptanceServices(
     IORDERSRepository orderDal,
     IFOLDERSRepository foldersDal,
     IPREORDERSRepository preOrdersDal,
     IUnitOfWork unitOfWork,
     ISysUserInfoServices sysUserInfoServices,
     IRASCLIENTSRepository rasClientsDal)
 {
     this._OrderDal            = orderDal;
     this._FoldersDal          = foldersDal;
     this._PreOrdersDal        = preOrdersDal;
     this._UnitOfWork          = unitOfWork;
     this._SysUserInfoServices = sysUserInfoServices;
     this._RasClientsDal       = rasClientsDal;
     base.BaseDal = foldersDal;
 }
Пример #2
0
 public FOLDERSServices(IFOLDERSRepository dal)
 {
     this._dal    = dal;
     base.BaseDal = dal;
 }