Ejemplo n.º 1
0
 public OneController(
     ILogger <OneController> logger,
     IOneService oneService)
 {
     _logger     = logger;
     _oneService = oneService;
 }
 public HomeController(IOneService oneService, ITwoService twoService, IThreeService threeService, IFourService fourService)
 {
     _oneService   = oneService;
     _twoService   = twoService;
     _threeService = threeService;
     _fourService  = fourService;
 }
Ejemplo n.º 3
0
 public HomeController(IOneService oneService)
 {
     _oneService = oneService;
 }