public NationalSocietyDashboardService(
     INationalSocietyService nationalSocietyService,
     INationalSocietyDashboardSummaryService nationalSocietyDashboardSummaryService,
     IReportsDashboardMapService reportsDashboardMapService,
     IReportsDashboardByVillageService reportsDashboardByVillageService)
 {
     _nationalSocietyService = nationalSocietyService;
     _nationalSocietyDashboardSummaryService = nationalSocietyDashboardSummaryService;
     _reportsDashboardMapService             = reportsDashboardMapService;
     _reportsDashboardByVillageService       = reportsDashboardByVillageService;
 }
Example #2
0
 public ProjectDashboardService(
     IProjectService projectService,
     IReportService reportService,
     IReportsDashboardMapService reportsDashboardMapService,
     IReportsDashboardByFeatureService reportsDashboardByFeatureService,
     IReportsDashboardByHealthRiskService reportsDashboardByHealthRiskService,
     IReportsDashboardByVillageService reportsDashboardByVillageService,
     IReportsDashboardByDataCollectionPointService reportsDashboardByDataCollectionPointService,
     IProjectDashboardSummaryService projectDashboardSummaryService)
 {
     _projectService                               = projectService;
     _reportService                                = reportService;
     _reportsDashboardMapService                   = reportsDashboardMapService;
     _reportsDashboardByFeatureService             = reportsDashboardByFeatureService;
     _reportsDashboardByHealthRiskService          = reportsDashboardByHealthRiskService;
     _reportsDashboardByVillageService             = reportsDashboardByVillageService;
     _reportsDashboardByDataCollectionPointService = reportsDashboardByDataCollectionPointService;
     _projectDashboardSummaryService               = projectDashboardSummaryService;
 }