Exemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="App"/> class.
 /// </summary>
 /// <param name="landingAreaService">The landing area service.</param>
 /// <param name="platformService">The platform service.</param>
 /// <param name="rocketService">The rocket service.</param>
 public App(ILandingAreaService landingAreaService, IPlatformService platformService, IRocketService rocketService, IPositionService positionService)
 {
     _landingAreaService = landingAreaService;
     _platformService    = platformService;
     _rocketService      = rocketService;
     _positionService    = positionService;
 }
 public RocketsController(IRocketService rocketService)
 {
     _rocketService = rocketService;
 }