/**
 * @author rgaumond
 */
function photo_object(photoID,theURL,theThumbURL,albumID,position,albumName)
{
	this.photoID=photoID;
	this.theURL=theURL;
	this.theThumbURL=theThumbURL;
	this.albumID=albumID;
	this.position=position;
	this.albumName=albumName;
}


function inscription_object(activity_id, membre_id, inscriptor_id, need, status_id,price
				,info,date_inscription,cancellor_id,cancellation_date)
{
	this.activity_id=activity_id;
	this.membre_id=membre_id;
	this.inscriptor_id=inscriptor_id;
	this.need=need;
	this.status_id = status_id;
	this.price=price;
	this.info = info;
	this.date_inscription = date_inscription;
	this.cancellor_id=cancellor_id;
	this.cancellation_date = cancellation_date;
	
}