Exemplo n.º 1
0
 public SignInViewModel(INavigationService navigationService,
                        IAutorizationService autorization,
                        IProfileService profileService,
                        IAutentificationService autentification)
 {
     _navigationService = navigationService;
     _autorization      = autorization;
     _profileService    = profileService;
     _autentification   = autentification;
 }
Exemplo n.º 2
0
        public SignUpViewModel(INavigationService navigationService,
                               IRepository repository,
                               IAutorizationService autorization,
                               IProfileService profile,
                               IAutentificationService autentification)
        {
            _navigationService = navigationService;
            _repository        = repository;
            _autorization      = autorization;
            _profile           = profile;
            _autentification   = autentification;

            Regs = new ObservableCollection <RegistrateModel>();
        }