Exemplo n.º 1
0
 public DashboardPreviewDto GetAll()
 {
     return(new DashboardPreviewDto
     {
         NumOfSites = _siteService.Count().ToString(),
         NumOfTurbines = _turbineService.Count().ToString(),
         NumOfBlades = _bladeService.Count().ToString(),
         NumOfDeepZoomLinks = _deepZoomLinkService.Count().ToString(),
         NumOfFindings = _defectService.Count().ToString(),
         NumOfReports = _reportService.Count().ToString()
     });
 }