public CustomersCollectionProxyStub Customers_SaveCollection(CustomersCollectionProxyStub collection)
        {
            if (collection != null)
            {
                CustomersCollection c = collection.GetCollection();
                c.Save();
                return(c);
            }

            return(null);
        }
		public CustomersCollectionProxyStub Customers_SaveCollection(CustomersCollectionProxyStub collection)
		{
			if (collection != null)
			{
				CustomersCollection c = collection.GetCollection();
				c.Save();
				return c;
			}

			return null;
		}