コード例 #1
0
ファイル: ChildrenController.cs プロジェクト: bt93/nanny_app
 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;
 }