@using ParcelWeb.Core
@ViewBag.Title
@*END Page Level CSS*@
@{Html.RenderPartial("_TopNavbar");}
@if (User.IsInRole(StaticUserRoles.Admin))
{
Html.RenderPartial("_AdminMenu");
}
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)