public CustomizedProductDisplayTypeProductMapCollection FetchByQuery(Query qry)
        {
            CustomizedProductDisplayTypeProductMapCollection coll = new CustomizedProductDisplayTypeProductMapCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
        public CustomizedProductDisplayTypeProductMapCollection FetchAll()
        {
            CustomizedProductDisplayTypeProductMapCollection coll = new CustomizedProductDisplayTypeProductMapCollection();
            Query qry = new Query(CustomizedProductDisplayTypeProductMap.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
        public CustomizedProductDisplayTypeProductMapCollection FetchByID(object CustomizedProductDisplayTypeId)
        {
            CustomizedProductDisplayTypeProductMapCollection coll = new CustomizedProductDisplayTypeProductMapCollection().Where("CustomizedProductDisplayTypeId", CustomizedProductDisplayTypeId).Load();

            return(coll);
        }