示例#1
0
        public SysProvinciaIndecCollection FetchByQuery(Query qry)
        {
            SysProvinciaIndecCollection coll = new SysProvinciaIndecCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
示例#2
0
        public SysProvinciaIndecCollection FetchAll()
        {
            SysProvinciaIndecCollection coll = new SysProvinciaIndecCollection();
            Query qry = new Query(SysProvinciaIndec.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
示例#3
0
        public SysProvinciaIndecCollection FetchByID(object IdProvincia)
        {
            SysProvinciaIndecCollection coll = new SysProvinciaIndecCollection().Where("idProvincia", IdProvincia).Load();

            return(coll);
        }