public AprMomentoNacimientoCollection FetchByQuery(Query qry) { AprMomentoNacimientoCollection coll = new AprMomentoNacimientoCollection(); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public AprMomentoNacimientoCollection FetchAll() { AprMomentoNacimientoCollection coll = new AprMomentoNacimientoCollection(); Query qry = new Query(AprMomentoNacimiento.Schema); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }