Ejemplo n.º 1
0
 public UsersController(
     ILoginService loginService,
     IRegistrationService registrationService,
     IUserCurrencyService userCurrencyService)
 {
     _loginService        = loginService;
     _registrationService = registrationService;
     _userCurrencyService = userCurrencyService;
 }
Ejemplo n.º 2
0
 public UserCurrenciesController(IUserCurrencyService userCurrencyService, IAuthService authService) : base(authService)
 {
     _userCurrencyService = userCurrencyService;
 }