Exemplo n.º 1
0
 public ModelsPage(string category, string type)
 {
     InitializeComponent();
     BindingContext = new ModelsPageViewModel(category, type)
     {
         Navigation = this.Navigation
     };
 }
Exemplo n.º 2
0
 public ModelsPage(string position)
 {
     InitializeComponent();
     Title          = position;
     BindingContext = new ModelsPageViewModel(position)
     {
         Navigation = this.Navigation
     };
 }