// public List<Pet> Pets { get; set; } public void Update(Child toUpdate) { base.Update(toUpdate); ChildInterestTables = toUpdate.ChildInterestTables; // Pets = toUpdate.Pets; }
public Entry(DateTime date, Child child, Challenge challenge) { Date = date; Child = child; Challenge = challenge; }
public void Update(Child toUpdate) { base.Update(toUpdate); ChildInterests = toUpdate.ChildInterests; Pets = toUpdate.Pets; }