Ejemplo n.º 1
0
 public LoginViewModel(AuthorizationViewModel frame)
 {
     _frame          = frame;
     LoginCommand    = new RelayCommand(LoginAction);
     RegisterCommand = new RelayCommand(RegisterAction);
 }
Ejemplo n.º 2
0
 public RegisterViewModel(AuthorizationViewModel frame)
 {
     _frame          = frame;
     BackCommand     = new RelayCommand(BackAction);
     RegisterCommand = new RelayCommand(RegisterAction);
 }