public bool DeleteReport(int reportId)
 {
     try {
         return(_packageRepository.DeleteReport(reportId));
     } catch (Exception ex) {
         LogError(ex);
         return(false);
     }
 }