示例#1
0
        public static CommandCenter GetInstance()
        {
            if (commandCenter == null)
            {
                commandCenter = new CommandCenter();
            }

            return(commandCenter);
        }
        static void Main(string [] args)
        {
            CommandCenter commandCenter = new CommandCenter();

            commandCenter.DeliverMarsOperations(inputData);
        }
示例#3
0
 internal InputDataHelper(CommandCenter commandCenter)
 {
     this.commandCenter = commandCenter;
 }