예제 #1
0
 public bool CheckIfPresentationHasAward(int presentationId)
 {
     try
     {
         _repository.CheckIfPresentationHasAward(presentationId);
     }
     catch
     {
         return(false);
     }
     return(true);
 }