Esempio n. 1
0
        public IEnumerable <ICommand> GetProcessedCommands()
        {
            var list = new List <ICommand>();

            foreach (var state in _commandRepository.GetAllProcessed())
            {
                //list.Add(new CommandBase(_commandRepository, state));
            }
            return(list);
        }