示例#1
0
        public MainForm(IPlateauParser plateauParser, IRoverParser roverParser, Timer animationTimer)
        {
            this.plateauParser  = plateauParser;
            this.roverParser    = roverParser;
            this.animationTimer = animationTimer;

            animationTimer.Tick += AnimationTick;
            InitializeComponent();
        }
示例#2
0
 public RoverService(IRoverParser parser, IRoverManager manager)
 {
     _parser  = parser;
     _manager = manager;
 }