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