public HomeController( IDisaster disasterSvc, IVolunteerService volunteerSvc, IWebSecurityWrapper webSecurity, IClusterCoordinatorService clusterCoordinatorService, IVolunteerTypeService volunteerTypeService, IDisasterClusterService disasterClusterService ) { _disasterSvc = disasterSvc; _volunteerSvc = volunteerSvc; _webSecurity = webSecurity; _clusterCoordinatorService = clusterCoordinatorService; _volunteerTypes = volunteerTypeService; _disasterClusterSvc = disasterClusterService; }
public DisasterController(IDisaster disasterSvc, ICluster clusterSvc, IDisasterClusterService disasterClusterSvc) { _disasterSvc = disasterSvc; _clusterSvc = clusterSvc; _disasterClusterSvc = disasterClusterSvc; }