Esempio n. 1
0
 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 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;
 }
Esempio n. 4
0
 public DisasterController(IDisaster disasterSvc, ICluster clusterSvc, IDisasterClusterService disasterClusterSvc)
 {
     _disasterSvc        = disasterSvc;
     _clusterSvc         = clusterSvc;
     _disasterClusterSvc = disasterClusterSvc;
 }