}
public void setPrice(){
price= new Price();
price.setCalendarDate(CalendarUtils.GetToday());
price.setPrice(new BigDecimal(120));
price.setTypology_id(t.getId());
price.setStructure(hotel2);
price.setHotelId(hotel2.getId());
priceRawManager.add(price);
t.addPrice(price);
price1 = new Price ();
price1.setCalendarDate(CalendarUtils.GetGregorianCalendar("01/01/2008"));
price1.setPrice(new BigDecimal(100));
price1.setTypology_id(t.getId());
price1.setHotelId(hotel2.getId());
price1.setStructure(hotel2);
price1.setTypology_id(t.getId());
priceRawManager.add(price1);
t.addPrice(price1);
//setPrice
Price price2 = new Price ();
price2.setCalendarDate(CalendarUtils.GetToday());
price2.setPrice(new BigDecimal(100));
price2.setTypology_id(t1.getId());
price2.setHotelId(hotel2.getId());
price2.setStructure(hotel2);
price2.setTypology_id(t1.getId());
priceRawManager.add(price2);
t1.addPrice(price2);
}