Exemple #1
0
 public AuthorizedUserController(IUsersService usersService, IDefaultValuesService defaultValuesService, ICookieService cookieService, IAuthorizedUserService authorizedUserService)
 {
     _usersService          = usersService;
     _defaultValuesService  = defaultValuesService;
     _cookieService         = cookieService;
     _authorizedUserService = authorizedUserService;
 }
 public RegisterController(ICookieService cookieService, IEmailService emailService, IUsersService usersService, ISocialLoginService socialLoginService, IDefaultValuesService defaultValuesService)
 {
     _usersService         = usersService;
     _defaultValuesService = defaultValuesService;
     _cookieService        = cookieService;
     _socialLoginService   = socialLoginService;
     _emailService         = emailService;
 }
 public LoginController(ICookieService cookieService, IEmailService emailService, IUsersService usersService, ISocialLoginService socialLoginService, IDefaultValuesService defaultValuesService, IMapper mapper)
 {
     _usersService         = usersService;
     _defaultValuesService = defaultValuesService;
     _cookieService        = cookieService;
     _socialLoginService   = socialLoginService;
     _emailService         = emailService;
     _mapper = mapper;
 }
Exemple #4
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;
 }
Exemple #5
0
 public DefaultValuesController(
     IDefaultValuesService defaultValuesService)
 {
     _service = defaultValuesService;
 }