예제 #1
0
        public ListarViewModel()
        {
            controle = new ControleApp();

            var realm = Realm.GetInstance();

            Cliente = realm.All <Cliente>().ToList();
        }
예제 #2
0
 public MainPageViewModel()
 {
     controle        = new ControleApp();
     CadastroCommand = new Command(bt_Cadastro_Clicked);
     ListagemCommand = new Command(bt_Listagem_Clicked);
 }
예제 #3
0
        public ClienteViewModel()
        {
            _controle = new ControleApp();

            SalvarCommand = new Command(bt_Salvar_Clicked);
        }