Exemplo n.º 1
0
 //Construtor
 public StartViewModel()
 {
     FaceServiceHelper.ApiKey = "a056eb1bd9cd4e2b9371c0a250af53cd";
     Text                  = "Welcome";
     StatusResult          = string.Empty;
     _mvvmService          = DependencyService.Get <Services.IMvvmService>();
     CheckFaceCommand      = new Command(ExecuteCheckFaceCommand);
     FaceConfirmerdCommand = new Command(ExecuteFaceConfirmerdCommand);
 }
Exemplo n.º 2
0
 //Construtor
 public CadastroViewModel()
 {
     _mvvmService             = DependencyService.Get <Services.IMvvmService>();
     FaceServiceHelper.ApiKey = "a056eb1bd9cd4e2b9371c0a250af53cd";
     GrupoCommand             = new Command(ExecuteGrupoCommand);
     TakePictureCommand       = new Command(ExecuteTakePictureCommand);
     CadastrarPessoaCommand   = new Command(ExecuteCadastrarPessoaCommand);
     ConfirmedCommand         = new Command(ExecuteConfirmedCommand);
     RefreshGroups();
 }
Exemplo n.º 3
0
 //Construtor
 public HomeViewModel()
 {
     _navigationMvvm = DependencyService.Get <Services.IMvvmService>();
     ConfigCommand   = new Command(ExecuteConfigCommand);
 }