Exemplo n.º 1
0
        public TamCelulasEscamosaCollection FetchByQuery(Query qry)
        {
            TamCelulasEscamosaCollection coll = new TamCelulasEscamosaCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemplo n.º 2
0
        public TamCelulasEscamosaCollection FetchAll()
        {
            TamCelulasEscamosaCollection coll = new TamCelulasEscamosaCollection();
            Query qry = new Query(TamCelulasEscamosa.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemplo n.º 3
0
        public TamCelulasEscamosaCollection FetchByID(object IdCelulasEscamosas)
        {
            TamCelulasEscamosaCollection coll = new TamCelulasEscamosaCollection().Where("idCelulasEscamosas", IdCelulasEscamosas).Load();

            return(coll);
        }