示例#1
0
 public ChildrenController(IChildDAO childDao, IParentDAO parentDao, IAllergyDAO allergyDao)
 {
     this.childDao   = childDao;
     this.parentDao  = parentDao;
     this.allergyDao = allergyDao;
 }
示例#2
0
 public AllergyController(IAllergyDAO allergyDao)
 {
     this.allergyDao = allergyDao;
 }