public RecipientCollection FetchAll() { RecipientCollection coll = new RecipientCollection(); Query qry = new Query(Recipient.Schema); coll.LoadAndCloseReader(qry.ExecuteReader()); return coll; }
public RecipientCollection FetchByQuery(Query qry) { RecipientCollection coll = new RecipientCollection(); coll.LoadAndCloseReader(qry.ExecuteReader()); return coll; }