public static String getPoll_Actions() {
            Forum.Users.PollController t = new Forum.Users.PollController();
            aAction[] arrActions = new aAction[] { t.Add, t.Create };
            aActionWithId[] arrActions2 = new aActionWithId[] { t.Vote, t.Voter };
            StringBuilder sb = new StringBuilder();

            addActions( sb, arrActions );
            addActions( sb, arrActions2 );

            return sb.ToString();
        }
        public static String getPoll_Actions()
        {
            Forum.Users.PollController t = new Forum.Users.PollController();
            aAction[]       arrActions   = new aAction[] { t.Add, t.Create };
            aActionWithId[] arrActions2  = new aActionWithId[] { t.Vote, t.Voter };
            StringBuilder   sb           = new StringBuilder();

            addActions(sb, arrActions);
            addActions(sb, arrActions2);

            return(sb.ToString());
        }
 public static String getPoll_Actions() {
     Forum.Users.PollController t = new Forum.Users.PollController();
     aActionWithId[] arrActions = new aActionWithId[] { t.Add, t.Create, t.Vote, t.Voter };
     return getActionStr( arrActions );
 }
 public static String getPoll_Actions()
 {
     Forum.Users.PollController t          = new Forum.Users.PollController();
     aActionWithId[]            arrActions = new aActionWithId[] { t.Add, t.Create, t.Vote, t.Voter };
     return(getActionStr(arrActions));
 }