Exemplo n.º 1
0
 public RecipientCollection FetchAll()
 {
     RecipientCollection coll = new RecipientCollection();
     Query qry = new Query(Recipient.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Exemplo n.º 2
0
 public RecipientCollection FetchByQuery(Query qry)
 {
     RecipientCollection coll = new RecipientCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }