summaryrefslogtreecommitdiff
path: root/recipeBuddy/src/app/DataModels/recipe.ts
blob: 18c471680d0ed3f07f751461f9c0071a47ef2376 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import {Step} from "./step"
import {Ingredient} from "./ingredient"

export class Recipe {
	public id: number;
	public name: string;
	public description: string;
	public ingredients: Ingredient[];
	public steps: Step[];
	public servingSize: number;
	public cookTime: number;
	public timesCooked: number;
	public rating: number;
	public tags: string[];
	public photos: string[];

	public constructor(id: number,
                      name: string,
                      description: string,
                      ingredients: Ingredient[],
                      steps: Step[],
                      servingSize: number,
                      cookTime: number,
                      timesCooked: number,
                      rating: number,
                      tags: string[],
                      photos: 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;
    this.photos = photos;
    this.timesCooked = timesCooked;
	}

	public getId(): number {
		return this.id;
	}

	public getName(): string {
		return this.name;
	}

	public getDescription(): string {
		return this.description;
	}

	public getIngredients(): Ingredient[] {
		return this.ingredients;
	}

	public getSteps(): Step[] {
		return this.steps;
	}

	public getServingSize(): number {
		return this.servingSize;
	}

	public getCookTime(): number {
		return this.cookTime;
	}
  
	public getTimesCooked(): number {
		return this.timesCooked;
	}
	public getRating(): number {
		return this.rating;
	}

	public getTags(): string[] {
		return this.tags;
	}
  
	public getPhotos(): string[] {
		return this.photos;
	}
}