public CustomerCustomerDemoCollection CustomerCustomerDemo_LoadAll()
		{
			CustomerCustomerDemoCollection coll = new CustomerCustomerDemoCollection();
			coll.es.IsLazyLoadDisabled = true;
			coll.LoadAll();
			return coll;
		}
		public CustomerCustomerDemoCollectionProxyStub CustomerCustomerDemo_LoadAll()
		{
			CustomerCustomerDemoCollection coll = new CustomerCustomerDemoCollection();
			if (coll.LoadAll())
			{
				return coll;
			}

			return null;
		}		
		public jsResponse<CustomerCustomerDemoCollection, CustomerCustomerDemo> CustomerCustomerDemoCollection_LoadAll()
		{
			jsResponse<CustomerCustomerDemoCollection, CustomerCustomerDemo> response = new jsResponse<CustomerCustomerDemoCollection, CustomerCustomerDemo>();

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

			return response;
		}