Beispiel #1
0
 public Company GetByUserId(string userId)
 {
     try
     {
         return(_repo.GetByUserId(userId));
     }
     catch (Exception ex)
     {
         _logger.Error(String.Format("Error during CompanyService.GetByUserId({0})", userId), ex);
         throw;
     }
 }