public DietSpecificForChild(int i, ListOfChildren lc, ListOfMeals lm, Dictionary <string, string> d)
 {
     InitializeComponent();
     index    = i;
     listC    = lc;
     listM    = lm;
     language = d;
 }
Exemplo n.º 2
0
 public ShowChild(int i, ListOfChildren lc, ListOfMeals lm, Dictionary <string, string> d)
 {
     InitializeComponent();
     index        = i;
     listChildren = lc;
     listMeals    = lm;
     meal         = new FoodSelection(lc, lm);
     listOfChild  = list.GetInformationOfAChild(index + 1);
     language     = d;
 }
Exemplo n.º 3
0
 public FoodSelection(ListOfChildren lc, ListOfMeals lm)
 {
     listC = lc;
     listM = lm;
 }