コード例 #1
0
 public IEnumerable <PresentationDTO> GetPresentationsById(int conferenceId)
 {
     try
     {
         return(_repository.GetPresentationsById(conferenceId));
     }
     catch
     {
         return(null);
     }
 }