wt1.0 bug fixing, push notification

This commit is contained in:
Bossanyi Tibor
2020-07-12 14:17:59 +02:00
parent f0f0136d65
commit 4e38d3da22
67 changed files with 1472 additions and 213 deletions
+17 -1
View File
@@ -19,7 +19,19 @@ class CustomerViewModel {
}
int get birthYear {
return this.birthYear;
return this.customer.birthYear;
}
String get goal {
return this.customer.goal;
}
String get fitnessLevel {
return this.customer.fitnessLevel;
}
String get bodyType {
return this.customer.bodyType;
}
setName(String name) {
@@ -69,4 +81,8 @@ class CustomerViewModel {
Customer getCustomer() {
return this.customer;
}
void setCustomer ( Customer customer ) {
this.customer = customer;
}
}