function Package (
			Id,
			ObjectivesGlobalToSystem,
			LearningStandard,
			Properties ,
			LearningObjects){
	this.Id = Id;
	this.ObjectivesGlobalToSystem = ObjectivesGlobalToSystem;
	this.LearningStandard = LearningStandard;
	this.Properties = Properties;
	this.LearningObjects = LearningObjects;
}
			

