Example #1
0
 // returns a List which includes all the children from the same mother
 public List <Child> GetAllChildrenByMother(uint motherId)
 {
     return(DAL.GetAllChildrenByMother(motherId));
 }