Esempio n. 1
0
 public UserRecipientCollection FetchAll()
 {
     UserRecipientCollection coll = new UserRecipientCollection();
     Query qry = new Query(UserRecipient.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Esempio n. 2
0
 public UserRecipientCollection FetchByQuery(Query qry)
 {
     UserRecipientCollection coll = new UserRecipientCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }