예제 #1
0
 public Carrot()
 {
     Name          = "Carrot";
     Calories      = 180;
     Protein       = 18.7f;
     Fats          = 1;
     Carbohydrates = 50f;
     Type          = VegetType.Carrot;
 }
예제 #2
0
 public Cucumber()
 {
     Name          = "Cucumber";
     Calories      = 130;
     Protein       = 12.1f;
     Fats          = 2;
     Carbohydrates = 22f;
     Type          = VegetType.Cucumber;
 }
예제 #3
0
 public Potato()
 {
     Name          = "Potato";
     Calories      = 350;
     Protein       = 40.1f;
     Fats          = 6;
     Carbohydrates = 60f;
     Type          = VegetType.Potato;
 }
예제 #4
0
 public Pepper()
 {
     Name          = "Pepper";
     Calories      = 30;
     Protein       = 12.1f;
     Fats          = 1;
     Carbohydrates = 40f;
     Type          = VegetType.Pepper;
 }
예제 #5
0
 public Tomato()
 {
     Name          = "Tomato";
     Calories      = 200;
     Protein       = 1.2f;
     Fats          = 7.4f;
     Carbohydrates = 5.3f;
     Type          = VegetType.Carrot;
 }