public IActionResult DemandAggregation(string country = "IN")
 {
     ViewBag.Employers = dashboardHandler.GetEmployers(true);
     ViewBag.JobRoles  = dashboardHandler.GetJobTitles();
     ViewBag.States    = dashboardHandler.GetStates(country);
     return(View());
 }