bug fix 1.0 (android logo, old device, firstname, exercise save)

This commit is contained in:
Bossanyi Tibor
2020-07-09 14:08:14 +02:00
parent dfe20685d7
commit 9b1d867826
11 changed files with 132 additions and 17 deletions
+2 -2
View File
@@ -11,7 +11,7 @@ class CustomerViewModel {
}
String get firstName {
return this.customer.firstName;
return this.customer.firstname;
}
String get sex {
@@ -26,7 +26,7 @@ class CustomerViewModel {
this.customer.name = name;
}
setFirstName(String firstName) {
this.customer.firstName = firstName;
this.customer.firstname = firstName;
}
setPassword( String password ) {