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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Ejemplo n.º 2
0
        public PathRouteCollection FetchAll()
        {
            PathRouteCollection coll = new PathRouteCollection();
            Query qry = new Query(PathRoute.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Ejemplo n.º 3
0
        public PathRouteCollection FetchByID(object PathRouteKey)
        {
            PathRouteCollection coll = new PathRouteCollection().Where("path_route_key", PathRouteKey).Load();

            return(coll);
        }