in src/Saas.SignupAdministration/Saas.SignupAdministration.Web/Areas/Admin/Controllers/TenantsController.cs [40:52]
public async Task<IActionResult> Details(string id)
{
if (!Guid.TryParse(id, out var guid))
{
return NotFound();
}
var tenant = await _adminServiceClient.TenantsGETAsync(guid);
return tenant == null
? (IActionResult)NotFound()
: View(new TenantViewModel(tenant, ReferenceData.TenantCategories, ReferenceData.ProductServicePlans));
}