private void CreateBooking(Booking booking, string place)
        {
            Booking b = new Booking();

            b.CheckIn              = _currentDate;
            b.CheckOut             = _currentDate.AddDays(1);
            b.AreaId               = _currentArea.Id;
            b.Place                = place;
            _intBoo.CurrentBooking = b;
            _intBoo.GoAction("bookedit");
        }
 private void GetPrice()
 {
     //UpdateCurrentBook();
     _intBoo.GoAction("getprice");
     if (_intBoo.CurrentPrice != null)
     {
         textBoxPrice.Text = _intBoo.CurrentPrice != null?_intBoo.CurrentPrice.Amount.ToString() : string.Empty;
     }
 }