コード例 #1
0
 public async Task AddAsync(ChildInterestJoin entity)
 {
     await _context.AddAsync(entity);
 }
コード例 #2
0
 public async Task RemoveAsync(ChildInterestJoin entity)
 {
     await Task.Run(() => _context.Remove(entity));
 }
コード例 #3
0
 public void Add(ChildInterestJoin entity)
 {
     _context.Add(entity);
 }
コード例 #4
0
 public void Remove(ChildInterestJoin entity)
 {
     _context.Remove(entity);
 }