public UserManagementPageViewModel(INavigationService navigationService, BaasBox box,
                                    IBaasBoxUserManagement userManagement)
 {
     _navigationService = navigationService;
     _box            = box;
     _userManagement = userManagement;
 }
 public LoginPageViewModel(INavigationService navigationService, IBaasBoxUserManagement boxUserManagement)
 {
     _navigationService = navigationService;
     _boxUserManagement = boxUserManagement;
 }