public Collection<Category> getAllCategories() {
return this._categoryDao.getAllCategories();
}
public String edit() {
this._hotel = (this.id != 0) ? this._hotelDao.getHotelById(this.id) : new Hotel();
this._hotel.setName(this.name);
this._hotel.setEmail(this.email);
this._hotel.setPhone(this.phone);
this._hotel.setComRegNo(this.comRegNo);
this._hotel.setVatNo(this.vatNo);