Ejemplo n.º 1
0
        // public List<Pet> Pets { get; set; }

        public void Update(Child toUpdate)
        {
            base.Update(toUpdate);
            ChildInterestTables = toUpdate.ChildInterestTables;
            // Pets = toUpdate.Pets;
        }
Ejemplo n.º 2
0
 public Entry(DateTime date, Child child, Challenge challenge)
 {
     Date      = date;
     Child     = child;
     Challenge = challenge;
 }
Ejemplo n.º 3
0
 public void Update(Child toUpdate)
 {
     base.Update(toUpdate);
     ChildInterests = toUpdate.ChildInterests;
     Pets           = toUpdate.Pets;
 }