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

            return(commandCenter);
        }
コード例 #2
0
        static void Main(string [] args)
        {
            CommandCenter commandCenter = new CommandCenter();

            commandCenter.DeliverMarsOperations(inputData);
        }
コード例 #3
0
ファイル: InputDataHelper.cs プロジェクト: Aydarbek/Martian
 internal InputDataHelper(CommandCenter commandCenter)
 {
     this.commandCenter = commandCenter;
 }