Exemplo n.º 1
0
 public App()
 {
     InitializeComponent();
     productsDataStore = new ProductsDataStore();
     unitsDataStore    = new UnitsDataStore();
     MainPage          = new NavigationPage(new ProductsPage());
 }
Exemplo n.º 2
0
        public void Setup()
        {
            IDataStore <Product> productsDataStore = new ProductsDataStore();

            productsViewModel = new ProductsViewModel(productsDataStore);

            unitsDataStore = new UnitsDataStore();
            unitsViewModel = new UnitsViewModel(UnitBase.Weight, unitsDataStore);
        }