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

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

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

            return(coll);
        }