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)));
 }
Example #2
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)));
 }