Example #1
0
        public TblServiceTypeCollection FetchByQuery(Query qry)
        {
            TblServiceTypeCollection coll = new TblServiceTypeCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Example #2
0
        public TblServiceTypeCollection FetchAll()
        {
            TblServiceTypeCollection coll = new TblServiceTypeCollection();
            Query qry = new Query(TblServiceType.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Example #3
0
        public TblServiceTypeCollection FetchByID(object Id)
        {
            TblServiceTypeCollection coll = new TblServiceTypeCollection().Where("ID", Id).Load();

            return(coll);
        }