public Collection<Customer> getAllCustomers() {
return this._customerDao.getAllCustomers();
}
public String edit() {
this._customer = (this.id != 0) ? this._customerDao.getCustomerById(this.id) : new Customer();
this._customer.setName(this.name);
this._customer.setEmail(this.email);
this._customer.setPhone(this.phone);
this._customer.setComRegNo(this.comRegNo);
this._customer.setVatNo(this.vatNo);