public BrandApplicationService(IMapper mapper, IUsersService usersService, ICookieService cookieService, ICompaniesService companiesService, IBrandApplicationClassesService brandApplicationClassesService, IBasketService basketService, IApplicationPricesService applicationPricesService)
 {
     _usersService     = usersService;
     _mapper           = mapper;
     _cookieService    = cookieService;
     _companiesService = companiesService;
     _brandApplicationClassesService = brandApplicationClassesService;
     _basketService            = basketService;
     _applicationPricesService = applicationPricesService;
 }
Ejemplo n.º 2
0
 public PaymentService(IMapper mapper, IEmailService emailService, IUsersService usersService, ICookieService cookieService, IUploadImageService uploadImageService, IApplicationPricesService applicationPricesService, IBasketService basketService, IDefaultValuesService defaultValuesService, ICountersService countersService, HttpContext httpContext, IAgreementService agreementService)
 {
     _usersService             = usersService;
     _mapper                   = mapper;
     _emailService             = emailService;
     _cookieService            = cookieService;
     _uploadImageService       = uploadImageService;
     _applicationPricesService = applicationPricesService;
     _basketService            = basketService;
     _defaultValuesService     = defaultValuesService;
     _countersService          = countersService;
     _httpContext              = httpContext;
     _agreementService         = agreementService;
 }