예제 #1
0
파일: Problem.cs 프로젝트: fburel/HashCode
        public void Run()
        {
            // Dispatch the orders to the nearby warehouses.
            CommandDispatch cd = new CommandDispatch (this.Orders, this.WareHouses);
            var dispatchResult = cd.DispatchOrders ();

            // TODO: Once the dispatch is done, it's time to put the drone to action...

            this.Results = dispatchResult.ToString();
        }
예제 #2
0
        public void Run()
        {
            // Dispatch the orders to the nearby warehouses.
            CommandDispatch cd             = new CommandDispatch(this.Orders, this.WareHouses);
            var             dispatchResult = cd.DispatchOrders();


            // TODO: Once the dispatch is done, it's time to put the drone to action...


            this.Results = dispatchResult.ToString();
        }