示例#1
0
 public DeletedItemsDto GetAll()
 {
     return(new DeletedItemsDto
     {
         NumOfSites = _siteService.DeletedCount().ToString(),
         NumOfTurbines = _turbineService.DeletedCount().ToString(),
         NumOfBlades = _bladeService.DeletedCount().ToString(),
         NumOfFindings = _defectService.DeletedCount().ToString(),
         NumOfImages = _imageService.DeletedCount().ToString(),
         NumOfReports = _reportService.DeletedCount().ToString()
     });
 }