summaryrefslogtreecommitdiff
path: root/recipeBuddy/src/app/DataModels/recipe.ts
diff options
context:
space:
mode:
authorunknown <schencej@clarkson.edu>2019-11-25 10:07:30 -0500
committerunknown <schencej@clarkson.edu>2019-11-25 10:07:30 -0500
commit5fc0371f5fc0215f48b9f27ac216a359da6997e9 (patch)
tree887c10117ff0a6ba79f6d4bda0cb815d8dfcd5a2 /recipeBuddy/src/app/DataModels/recipe.ts
parent445816bc374be098156b33e2c7051091f391786f (diff)
Added data models.
Diffstat (limited to 'recipeBuddy/src/app/DataModels/recipe.ts')
-rw-r--r--recipeBuddy/src/app/DataModels/recipe.ts62
1 files changed, 62 insertions, 0 deletions
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;
+ }
+}