public jsResponse<CustomerCustomerDemoCollection, CustomerCustomerDemo> CustomerCustomerDemoCollection_Save(CustomerCustomerDemoCollection collection)
		{
			jsResponse<CustomerCustomerDemoCollection, CustomerCustomerDemo> response = new jsResponse<CustomerCustomerDemoCollection, CustomerCustomerDemo>();

			try
			{
				collection.Save();
				response.collection = collection;
			}
			catch (Exception ex)
			{
				response.exception = ex.Message;
			}

			return response;
		}