Ejemplo n.º 1
0
 public UserRecipientCollection FetchAll()
 {
     UserRecipientCollection coll = new UserRecipientCollection();
     Query qry = new Query(UserRecipient.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Ejemplo n.º 2
0
 public UserRecipientCollection FetchByQuery(Query qry)
 {
     UserRecipientCollection coll = new UserRecipientCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Ejemplo n.º 3
0
 public UserRecipientCollection FetchByID(object UserRecipientsKey)
 {
     UserRecipientCollection coll = new UserRecipientCollection().Where("user_recipients_key", UserRecipientsKey).Load();
     return coll;
 }