Example #1
0
 public ExistingMealDto(DateTime day,
                        ExistingMealTypeDto mealType,
                        ExistingRecipeDto recipe,
                        int mealId,
                        bool hasBeenShopped)
 {
     Day            = day;
     MealType       = mealType;
     Recipe         = recipe;
     MealId         = mealId;
     HasBeenShopped = hasBeenShopped;
 }
Example #2
0
 public NewMealDto(DateTime day, ExistingMealTypeDto mealType, ExistingRecipeDto recipe)
 {
     Day      = day;
     MealType = mealType;
     Recipe   = recipe;
 }