Пример #1
0
        public FuncionarioViewModel()
        {
            this.GravarCommand     = new Command(this.Gravar);
            this.ExcluirCommand    = new Command(this.Excluir);
            this._navigatioService = DependencyService.Get <Infra.INavigatioService>();

            this.CarregaFuncionarios();

            this.CarregaListaMoedas();
        }
Пример #2
0
 public LoginViewModel()
 {
     this.LogarCommand      = new Command(this.Logar);
     this._navigatioService = DependencyService.Get <Infra.INavigatioService>();
 }