Example #1
0
 public bool ExistMedic(Guid id)
 {
     try
     {
         return(_medicRepository.Exists(id));
     }
     catch (Exception ex)
     {
         _logger.Error(ex.Message, ex);
         return(false);
     }
 }