Beispiel #1
0
        public ProjectAssignmentCollection FetchByQuery(Query qry)
        {
            ProjectAssignmentCollection coll = new ProjectAssignmentCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Beispiel #2
0
        public ProjectAssignmentCollection FetchAll()
        {
            ProjectAssignmentCollection coll = new ProjectAssignmentCollection();
            Query qry = new Query(ProjectAssignment.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Beispiel #3
0
        public ProjectAssignmentCollection FetchByID(object ProjectID)
        {
            ProjectAssignmentCollection coll = new ProjectAssignmentCollection().Where("ProjectID", ProjectID).Load();

            return(coll);
        }