Exemplo n.º 1
0
 public LoginPageViewModel(INavigationService navigationService, MyLeasingService myLeasingService)
     : base(navigationService)
 {
     Title     = Languages.Login;
     IsEnabled = true;
     this._myLeasingService = myLeasingService;
     TranslateConstants();
 }
Exemplo n.º 2
0
 public RegisterPageViewModel(INavigationService navigationService, MyLeasingService myLeasingService)
     : base(navigationService)
 {
     Title     = Languages.SignUp;
     IsEnabled = true;
     TranslateConstants();
     Roles = new ObservableCollection <string>(new List <string> {
         "Owner", "Lessee"
     });
     this._myLeasingService = myLeasingService;
 }