fixed it
This commit is contained in:
parent
86b189aeb9
commit
8cd1ea33d8
1 changed files with 2 additions and 1 deletions
|
@ -30,7 +30,7 @@ public class ServiceProvider extends UserType {
|
||||||
private String companyname;
|
private String companyname;
|
||||||
private boolean licensed;
|
private boolean licensed;
|
||||||
private String description;
|
private String description;
|
||||||
private int rating
|
private int rating;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -54,6 +54,7 @@ public class ServiceProvider extends UserType {
|
||||||
this.companyname = companyname;
|
this.companyname = companyname;
|
||||||
this.licensed = licensed;
|
this.licensed = licensed;
|
||||||
this.description = "";
|
this.description = "";
|
||||||
|
this.rating = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
ServiceProvider(String username, String password, String firstname, String lastname, String address,
|
ServiceProvider(String username, String password, String firstname, String lastname, String address,
|
||||||
|
|
Loading…
Reference in a new issue