public AddBonoPage()
 {
     monedaService = new MonedasService();
     bonosService  = new BonosService();
     GetMonedasAsync();
     InitializeComponent();
     BindingContext = this;
 }
Пример #2
0
        public BonosPage()
        {
            service         = new BonosService();
            this.Appearing += async(object sender, EventArgs e) =>
            {
                await RefreshData();
            };

            InitializeComponent();
        }