示例#1
0
 public void CreateChild(Child newChild)
 {
     _context.Add(newChild);
     _context.SaveChanges();
 }
示例#2
0
 public void Add(RegisterChild newRegisterChild)
 {
     _context.Add(newRegisterChild);
     _context.SaveChanges();
 }