Пример #1
0
 public bool Exists(Guid id)
 {
     try
     {
         return(_turnRepository.TurnExists(id));
     }
     catch (Exception ex)
     {
         _logger.Error(ex.Message, ex);
         return(false);
     }
 }