public static List<QueueHelper> GetAll(string account, string key)
        {
			List<QueueHelper> list = new List<QueueHelper>();
            foreach (string tableName in Queue.GetAll(account,key))
            {
				QueueHelper table = new QueueHelper() { Name = tableName };
                list.Add(table);
            }

            return list;
        }
        public static List <QueueHelper> GetAll(string account, string key)
        {
            List <QueueHelper> list = new List <QueueHelper>();

            foreach (string tableName in Queue.GetAll(account, key))
            {
                QueueHelper table = new QueueHelper()
                {
                    Name = tableName
                };
                list.Add(table);
            }

            return(list);
        }