Exemplo n.º 1
0
 void IDatingRepository.Add <T>(T entity)
 {
     _context.Add(entity);
 }
Exemplo n.º 2
0
 public void Add <T>(T entity) where T : class
 {
     _datingAppDbContext.Add(entity);
 }