Beispiel #1
0
        public AccountController(IUserAppService userAppService, IUnitOfWorkAppService unitOfWorkAppService, IToastNotification toastNotification, IAuthenticantionService authorizationService)
        {
            _userAppService = userAppService;

            _unitOfWorkAppService = unitOfWorkAppService;

            _notificationService = toastNotification;

            _authorizationService = authorizationService;
        }
Beispiel #2
0
 public AuthenticationController(IAuthenticantionService authenticantionService, INotificador notificador) : base(notificador)
 {
     _authenticantionService = authenticantionService;
 }