From 5fc0371f5fc0215f48b9f27ac216a359da6997e9 Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 25 Nov 2019 10:07:30 -0500 Subject: Added data models. --- recipeBuddy/src/app/DataModels/recipe.ts | 62 ++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 recipeBuddy/src/app/DataModels/recipe.ts (limited to 'recipeBuddy/src/app/DataModels/recipe.ts') diff --git a/recipeBuddy/src/app/DataModels/recipe.ts b/recipeBuddy/src/app/DataModels/recipe.ts new file mode 100644 index 0000000..82e4a73 --- /dev/null +++ b/recipeBuddy/src/app/DataModels/recipe.ts @@ -0,0 +1,62 @@ +import {Steps} from "./steps" +import {Ingredients} from "./ingredients" + +export class Recipe { + private id: number; + private name: string; + private description: string; + private ingredients: Ingredients; + private steps: Steps; + private servingSize: number; + private cookTime: number; + private rating: number; + private tags: string[]; + + public constructor(id: number, name: string, description: string, ingredients: Ingredients, steps: Steps, servingSize: number, cookTime: number, rating: number, tags: string[]) { + this.id = id; + this.name = name; + this.description = description; + this.ingredients = ingredients; + this.steps = steps; + this.servingSize = servingSize; + this.cookTime = cookTime; + this.rating = rating; + this.tags = tags; + } + + public getId(): number { + return this.id; + } + + public getName(): string { + return this.name; + } + + public getDescription(): string { + return this.description; + } + + public getIngredients(): Ingredients { + return this.ingredients; + } + + public getSteps(): Steps { + return this.steps; + } + + public getServingSize(): number { + return this.servingSize; + } + + public getCookTime(): number { + return this.cookTime; + } + + public getRating(): number { + return this.rating; + } + + public getTags(): string[] { + return this.tags; + } +} -- cgit v1.1