Beispiel #1
0
 public DemandManager(IUnitOfWork uow, IDemandDAL demandDAL, IDemandTypeDAL demandTypeDAL, IOptions <FileUploadSettings> fileUploadSettings)
 {
     _uow = uow;
     _fileUploadSettings = fileUploadSettings.Value;
     _demandDAL          = demandDAL;
     _demandTypeDAL      = demandTypeDAL;
 }
Beispiel #2
0
 public ProductManager(IUnitOfWork uow, IProductDAL productDAL, IProductDemandDAL productDemandDAL, IProductImageDAL productImageDAL, IBrandDAL brandDAL, IColorDAL colorDAL, ICategoryDAL categoryDAL, IDemandTypeDAL demandTypeDAL, IOptions <FileUploadSettings> fileUploadSettings, IProductColorDAL productColorDAL)
 {
     _uow                = uow;
     _productDAL         = productDAL;
     _productDemandDAL   = productDemandDAL;
     _productColorDAL    = productColorDAL;
     _productImageDAL    = productImageDAL;
     _brandDAL           = brandDAL;
     _colorDAL           = colorDAL;
     _categoryDAL        = categoryDAL;
     _demandTypeDAL      = demandTypeDAL;
     _fileUploadSettings = fileUploadSettings.Value;
 }