Example #1
0
 public LoginViewModel(INavigation navigation, AirlineContext context)
 {
     _navigation     = navigation;
     _context        = context;
     login           = new LoginRegisterService(context);
     LoginCommand    = new Command(Login);
     RegisterCommand = new Command(SignUpPage);
 }
Example #2
0
 public RegisterViewModel(INavigation navigation, AirlineContext context)
 {
     _navigation   = navigation;
     _context      = context;
     _register     = new LoginRegisterService(context);
     SignUpCommand = new Command(Register);
     LoginCommand  = new Command(SignInPage);
 }