public OrderCargoUpdateLogCollection FetchAll()
 {
     OrderCargoUpdateLogCollection coll = new OrderCargoUpdateLogCollection();
     Query qry = new Query(OrderCargoUpdateLog.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
 public OrderCargoUpdateLogCollection FetchByQuery(Query qry)
 {
     OrderCargoUpdateLogCollection coll = new OrderCargoUpdateLogCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader()); 
     return coll;
 }
 public OrderCargoUpdateLogCollection FetchByID(object Cargoupdateid)
 {
     OrderCargoUpdateLogCollection coll = new OrderCargoUpdateLogCollection().Where("cargoupdateid", Cargoupdateid).Load();
     return coll;
 }