public async Task AddAsync(XMasMotherInterestJoin entity)
 {
     await _context.AddAsync(entity);
 }
 public async Task RemoveAsync(XMasMotherInterestJoin entity)
 {
     await Task.Run(() => _context.Remove(entity));
 }
 public void Add(XMasMotherInterestJoin entity)
 {
     _context.Add(entity);
 }
 public void Remove(XMasMotherInterestJoin entity)
 {
     _context.Remove(entity);
 }