public HomeController(
     IDisaster disasterSvc,
     IVolunteerService volunteerSvc,
     IWebSecurityWrapper webSecurity,
     IClusterCoordinatorService clusterCoordinatorService,
     IVolunteerTypeService volunteerTypeService
     )
 {
     _disasterSvc  = disasterSvc;
     _volunteerSvc = volunteerSvc;
     _webSecurity  = webSecurity;
     _clusterCoordinatorService = clusterCoordinatorService;
     _volunteerTypes            = volunteerTypeService;
 }
 public HomeController(
     IDisaster disasterSvc,
     IVolunteerService volunteerSvc,
     IWebSecurityWrapper webSecurity,
     IClusterCoordinatorService clusterCoordinatorService,
     IVolunteerTypeService volunteerTypeService
     )
 {
     _disasterSvc = disasterSvc;
     _volunteerSvc = volunteerSvc;
     _webSecurity = webSecurity;
     _clusterCoordinatorService = clusterCoordinatorService;
     _volunteerTypes = volunteerTypeService;
 }