Added address validity check

ref #105
This commit is contained in:
2021-01-16 18:28:19 +01:00
parent 2a465f88c5
commit ae7c5ff0c3
2 changed files with 5 additions and 4 deletions

View File

@@ -57,9 +57,10 @@ export class Address {
country: string;
/**
* Turns this entity into it's response class.
* Checks if this is a valid address
*/
public toResponse() {
return new Error("NotImplemented");
public get isValidAddress(): Boolean {
if (!this.address1 || !this.city || !this.country || !this.postalcode) { return false; }
return true;
}
}