public function getConvertTime()
 {
     $timesheetService = new TimesheetService();
     $timeInSecs = $this->getDuration();
     if ($timeInSecs == null) {
         return null;
     } else {
         return $timesheetService->convertDurationToHours($this->getDuration());
     }
 }