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;
 }
Esempio n. 3
0
 public UserRecipientCollection FetchByID(object UserRecipientsKey)
 {
     UserRecipientCollection coll = new UserRecipientCollection().Where("user_recipients_key", UserRecipientsKey).Load();
     return coll;
 }