public ParentController(IParentDAL parentDAL, IMascotDAL mascotDAL, IChildDAL childDAL, IActivityDAL activityDAL)
 {
     this.parentDAL   = parentDAL;
     this.mascotDAL   = mascotDAL;
     this.childDAL    = childDAL;
     this.activityDAL = activityDAL;
 }
 public APIController(IChildDAL childDAL, IMascotDAL mascotDAL)
 {
     this.childDAL  = childDAL;
     this.mascotDAL = mascotDAL;
 }
 public ChildController(IChildDAL childDAL, IMascotDAL mascotDAL, IItemsDAL itemsDAL)
 {
     this.childDAL  = childDAL;
     this.mascotDAL = mascotDAL;
     this.itemsDAL  = itemsDAL;
 }