public Iterations FilterByIterationOwner(User IterationOwner)
        {
            Iterations tmp = this.SelectByIterationOwner(IterationOwner);

            this.Clear();
            this.AddRange(tmp);
            return(this);
        }
        public Iterations FilterByIterationType(IterationType IterationType)
        {
            Iterations tmp = this.SelectByIterationType(IterationType);

            this.Clear();
            this.AddRange(tmp);
            return(this);
        }
 public System.Collections.IList GetList()
 {
     Avenue.Workflow.Access.Iterations aIterations = new Iterations(this);
     return((System.Collections.IList)aIterations);
 }