﻿if ( !window.Entities )
    window.Entities = {};
    
Entities.Basket = function()
{
}

Entities.Basket.prototype.flight = null;
Entities.Basket.prototype.hotel = null;
Entities.Basket.prototype.car = null;

Entities.Basket.prototype.getFlight = function()
{
    return this.flight;
}
Entities.Basket.prototype.setFlight = function(value)
{
    this.flight = value;
}
Entities.Basket.prototype.getHotel = function()
{
    return this.hotel;
}
Entities.Basket.prototype.setHotel = function(value)
{
    this.hotel = value;
}
Entities.Basket.prototype.getCar = function()
{
    return this.car;
}
Entities.Basket.prototype.setCar = function(value)
{
    this.car = value;
}