blob: 9d833beff2770d7b4bcf8278899c66f3d1461be3 (
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 {
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, 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;
}
}
|