コード例 #1
0
ファイル: Index.cshtml.cs プロジェクト: bdfin/SpaceStats
 public IndexModel(AstronautService astronautService,
                   PictureOfTheDayService pictureOfTheDayService,
                   SpaceXService spaceXService)
 {
     this.astronautService       = astronautService;
     this.pictureOfTheDayService = pictureOfTheDayService;
     this.spaceXService          = spaceXService;
 }
コード例 #2
0
 public AstronautController(AstronautService astronautService)
 {
     _astronautService = astronautService;
 }