Ejemplo n.º 1
0
 public async Task Add(ProductGroupModel model)
 {
     _context.Add(model.Entity);
     await _context.SaveChangesAsync();
 }
Ejemplo n.º 2
0
 public async Task Add(FollowModel model)
 {
     _context.Add(model.Entity);
     await _context.SaveChangesAsync();
 }