@using ParcelWeb.Core
@ViewBag.Title
@{Html.RenderPartial("_TopNavbar");}
@if (User.IsInRole(StaticUserRoles.Admin))
{
}
else if (User.IsInRole(StaticUserRoles.Employee))
{
Html.RenderPartial("_EmployeeMenu");
}
else if (User.IsInRole(StaticUserRoles.InternationalCustomer) || User.IsInRole(StaticUserRoles.DomesticCustomer))
{
Html.RenderPartial("_CustomerMenu");
}
@**@
@RenderSection("scripts", required: false)
@*
@if (User.IsInRole("Admin"))
{
-
-
-
-
-
-
-
-
}
*@