public CustomerDemographicsCollection CustomerDemographics_LoadAll()
		{
			CustomerDemographicsCollection coll = new CustomerDemographicsCollection();
			coll.es.IsLazyLoadDisabled = true;
			coll.LoadAll();
			return coll;
		}
		public CustomerDemographicsCollectionProxyStub CustomerDemographics_LoadAll()
		{
			CustomerDemographicsCollection coll = new CustomerDemographicsCollection();
			if (coll.LoadAll())
			{
				return coll;
			}

			return null;
		}		
		public jsResponse<CustomerDemographicsCollection, CustomerDemographics> CustomerDemographicsCollection_LoadAll()
		{
			jsResponse<CustomerDemographicsCollection, CustomerDemographics> response = new jsResponse<CustomerDemographicsCollection, CustomerDemographics>();

			try
			{
				CustomerDemographicsCollection collection = new CustomerDemographicsCollection();
				collection.LoadAll();
				response.collection = collection;
			}
			catch (Exception ex)
			{
				response.exception = ex.Message;
			}

			return response;
		}