Exemplo n.º 1
0
        public WelcomeViewModel(GuiMiGoommaServices utilServices)
        {
            LoginCommand       = new Command(OnLoginClicked);
            RegisterCommand    = new Command(OnRegisterClicked);
            BrowseLoginCommand = new Command(BrowseLoginClicked);

            //TokenCommand
            TokenCommand      = new Command(OnTokenCommandClicked);
            this.utilServices = utilServices;

            InitializeBrowserLogin();
        }
Exemplo n.º 2
0
 public RegistrationViewModel(GuiMiGoommaServices utilServices)
 {
     this.utilServices = utilServices;
     //RegisterCommand = new Command(RegisterCommandClicked);
     RegisterCommand = new Command(RegisterCommandClicked2);
 }
Exemplo n.º 3
0
 public ContactsViewModel(GuiMiGoommaServices utilServices)
 {
     this.utilServices = utilServices;
     Initialize();
     //RetrieveContacts = new Command(RetrieveContactsCommandClicked);
 }
Exemplo n.º 4
0
 public HomeViewModel(GuiMiGoommaServices utilServices)
 {
     OutputText    = "txt";
     LogoutCommand = new Command(LogoutCommandClicked);
 }