void IDatingRepository.Add <T>(T entity)
 {
     _context.Add(entity);
 }
Exemple #2
0
 public void Add <T>(T entity) where T : class
 {
     _datingAppDbContext.Add(entity);
 }