public Interface(IAuthentificator authentificator, ICacheStorage cacheStorage, IEventoClient eventoClient, ISettingsLoader settingsLoader) { this.authentificator = authentificator; this.cacheStorage = cacheStorage; this.eventoClient = eventoClient; this.settingsLoader = settingsLoader; }
public PartViewModelFactory(IPartService partService, ICarService carService, IProviderService providerService, ICartService cartService, IAuthentificator authentificator) { _partService = partService; _carService = carService; _providerService = providerService; _cartService = cartService; _authentificator = authentificator; }
public CarPartViewModelAbstractFactory(ICarPartViewModelFactory <RegisterViewModel> registerVmFactory, ICarPartViewModelFactory <AuthViewModel> authVmFactory, ICarPartViewModelFactory <HomeViewModel> homeVmFactory, ICarPartViewModelFactory <PartViewModel> partVmFactory, ICarPartViewModelFactory <AdminViewModel> adminVmFactory, ICarPartViewModelFactory <CartViewModel> cartVmFactory, IAuthentificator authentificator) { _registerVMFactory = registerVmFactory; _authVMFactory = authVmFactory; _homeVmFactory = homeVmFactory; _partVmFactory = partVmFactory; _adminVmFactory = adminVmFactory; _cartVmFactory = cartVmFactory; _authentificator = authentificator; }
public AddBalanceViewModelFactory(ICardService cardService, IAuthentificator authentificator) { _authentificator = authentificator; _cardService = cardService; }
public AuthController() { auth = new Authentificator(); }
public AddPartToCartCommand(PartViewModel partViewModel, ICartService cartService, IAuthentificator authentificator) { _partViewModel = partViewModel; _cartService = cartService; _authentificator = authentificator; }
public AuthController(IUserRepository repository, IAuthentificator authenticator) { this.userRepository = repository ?? throw new ArgumentNullException(nameof(repository)); this.authenticator = authenticator; }
public AddressViewModelFactory(IAuthentificator authentificator, IOrderService orderService) { _authentificator = authentificator; _orderService = orderService; }
public CreateOrderCommand(IOrderService orderService, IAuthentificator authentificator, AddressViewModel addressViewModel) { _orderService = orderService; _authentificator = authentificator; _addressViewModel = addressViewModel; }
public DeletePartFromCartCommand(CartViewModel cartViewModel, ICartService cartService, IAuthentificator authentificator) { _cartViewModel = cartViewModel; _cartService = cartService; _authentificator = authentificator; }
public LogoutCommand(IAuthentificator authentificator) { _authentificator = authentificator; }
public AdminViewModelFactory(IAuthentificator authentificator) { _authentificator = authentificator; }
public AccountController(IAuthentificator authentificator) { _authentificator = authentificator; }
public PlacesController(IPlaceRepository repository, IAuthentificator authenticator) { this.repository = repository ?? throw new ArgumentNullException(nameof(repository)); this.authenticator = authenticator; }
public AddMoneyCommand(ICardService cardService, IAuthentificator authentificator, AddBalanceViewModel addBalanceViewModel) { _cardService = cardService; _authentificator = authentificator; _addBalanceViewModel = addBalanceViewModel; }
public UsersController(IUserRepository userRepository, IAuthentificator authenticator) { this.userRepository = userRepository ?? throw new ArgumentNullException(nameof(userRepository)); this.authenticator = authenticator ?? throw new ArgumentNullException(nameof(authenticator)); }
public RegisterViewModelFactory(IAuthentificator authentificator) { _authentificator = authentificator; }
public Interface(IAuthentificator authentificator, ICacheStorage cacheStorage, IEventoClient eventoClient) { this.authentificator = authentificator; this.cacheStorage = cacheStorage; this.eventoClient = eventoClient; }
public RegisterCommand(IAuthentificator authentificator, RegisterViewModel registerViewModel) { _authentificator = authentificator; _registerViewModel = registerViewModel; }
public CartViewModelFactory(IAuthentificator authentificator, ICartService cartService, IOrderService orderService) { _authentificator = authentificator; _cartService = cartService; _orderService = orderService; }