public UserIterations FilterByIteration(Iteration Iteration)
        {
            UserIterations tmp = this.SelectByIteration(Iteration);

            this.Clear();
            this.AddRange(tmp);
            return(this);
        }
        public UserIterations FilterByUser(User User)
        {
            UserIterations tmp = this.SelectByUserID(User);

            this.Clear();
            this.AddRange(tmp);
            return(this);
        }
예제 #3
0
 public System.Collections.IList GetList()
 {
     Avenue.Workflow.Access.UserIterations aUserIterations = new UserIterations(this);
     return((System.Collections.IList)aUserIterations);
 }