wt1.0 bug fixing, push notification
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user