summaryrefslogtreecommitdiff
path: root/recipeBuddy/src/app/DataModels/recipe.ts
blob: 368f237f7f34bf332e73848838fb29f604381be3 (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
import {Step} from "./step"
import {Ingredient} from "./ingredient"

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

	public constructor(id: number, name: string, description: string, ingredients: Ingredient[], steps: Step[], 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(): 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;
	}
}