コード例 #1
0
 public CustomizedProductDisplayTypeCollection FetchAll()
 {
     CustomizedProductDisplayTypeCollection coll = new CustomizedProductDisplayTypeCollection();
     Query qry = new Query(CustomizedProductDisplayType.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
コード例 #2
0
 public CustomizedProductDisplayTypeCollection FetchByQuery(Query qry)
 {
     CustomizedProductDisplayTypeCollection coll = new CustomizedProductDisplayTypeCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
コード例 #3
0
 public CustomizedProductDisplayTypeCollection FetchByID(object CustomizedProductDisplayTypeId)
 {
     CustomizedProductDisplayTypeCollection coll = new CustomizedProductDisplayTypeCollection().Where("CustomizedProductDisplayTypeId", CustomizedProductDisplayTypeId).Load();
     return coll;
 }