Example #1
0
 public SpaceshipController(
     EShopDbContext context,
     ISpaceshipService spaceshipService
     )
 {
     _context          = context;
     _spaceshipService = spaceshipService;
 }
Example #2
0
 public HomeController(ISpaceshipService spaceshipService, IPlanetService planetService)
 {
     this._spaceshipService = spaceshipService;
     this._planetService    = planetService;
 }
Example #3
0
 public ApiController(ApplicationContext applicationContext, ISpaceshipService spaceshipService, IPlanetService planetService)
 {
     this.applicationContext = applicationContext;
     this._spaceshipService  = spaceshipService;
     this._planetService     = planetService;
 }