Exemplo n.º 1
0
 public AddPackagePage(int containerid)
 {
     InitializeComponent();
     createBtn.IsVisible = false;
     //Save the container id
     _ContainerId   = containerid;
     _ViewModel     = new PackagePageVM();
     BindingContext = _ViewModel;
 }
 public IActionResult APIDefinition([FromRoute] Guid packageId, [FromRoute] Guid id)
 {
     // Show the view with the items needed for the page attached
     return(View("Index", PackagePageVM.Create(packageId, id)));
 }
Exemplo n.º 3
0
 public IActionResult Transformations([FromRoute] Guid packageId)
 {
     // Show the view with the items needed for the page attached
     return(View("Index", PackagePageVM.Create(packageId, Guid.Empty)));
 }