Exemple #1
0
        public UserAlertMessageCollection FetchByQuery(Query qry)
        {
            UserAlertMessageCollection coll = new UserAlertMessageCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemple #2
0
        public UserAlertMessageCollection FetchAll()
        {
            UserAlertMessageCollection coll = new UserAlertMessageCollection();
            Query qry = new Query(UserAlertMessage.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemple #3
0
        public UserAlertMessageCollection FetchByID(object UserAlertID)
        {
            UserAlertMessageCollection coll = new UserAlertMessageCollection().Where("userAlertID", UserAlertID).Load();

            return(coll);
        }