Exemplo n.º 1
0
        private void ShowProducts()
        {
            var thisPosition = currentPosition;
            var thisProducts = products.ToList();

            this.productSearchController = new ProductSearchController(thisPosition, thisProducts);
            this.NavigationController.PushViewController(productSearchController, true);
        }
Exemplo n.º 2
0
 private void ShowProducts()
 {
     var thisPosition = currentPosition;
     var thisProducts = products.ToList();
     this.productSearchController = new ProductSearchController(thisPosition, thisProducts);
     this.NavigationController.PushViewController(productSearchController, true);
 }