コード例 #1
0
        public FacContratoObraSocialCollection FetchByQuery(Query qry)
        {
            FacContratoObraSocialCollection coll = new FacContratoObraSocialCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
コード例 #2
0
        public FacContratoObraSocialCollection FetchAll()
        {
            FacContratoObraSocialCollection coll = new FacContratoObraSocialCollection();
            Query qry = new Query(FacContratoObraSocial.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
コード例 #3
0
        public FacContratoObraSocialCollection FetchByID(object IdContratoObraSocial)
        {
            FacContratoObraSocialCollection coll = new FacContratoObraSocialCollection().Where("idContratoObraSocial", IdContratoObraSocial).Load();

            return(coll);
        }