public void CreateChild(Child newChild) { _context.Add(newChild); _context.SaveChanges(); }
public void Add(RegisterChild newRegisterChild) { _context.Add(newRegisterChild); _context.SaveChanges(); }