main
 1using System;
 2using mars.rover.common;
 3
 4namespace mars.rover.presentation.infrastructure
 5{
 6    public class CommandFactory
 7    {
 8        public virtual Command create_for(Action action)
 9        {
10            return new ActionCommand(action);
11        }
12    }
13}