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))); }
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))); }