Beispiel #1
0
 public void Add <T>(T entity) where T : class
 {
     _logger.LogInformation($"Adding object of type {entity.GetType()}");
     _travelAPIContext.Add(entity);
 }