public CustomersProxyStub Customers_SaveEntity(CustomersProxyStub entity)
        {
            if (entity != null)
            {
                entity.Entity.Save();

                if (entity.Entity.RowState != esDataRowState.Deleted && entity.Entity.RowState != esDataRowState.Invalid)
                {
                    return(entity);
                }
            }

            return(null);
        }
		public CustomersProxyStub Customers_SaveEntity(CustomersProxyStub entity)
		{
			if (entity != null)
			{
				entity.Entity.Save();

				if (entity.Entity.RowState != esDataRowState.Deleted && entity.Entity.RowState != esDataRowState.Invalid)
				{
					return entity;
				}
			}

			return null;
		}