コード例 #1
0
ファイル: ArtistYearRule.cs プロジェクト: mquekel/rockstars
 public ArtistYearRule(ISongSearchService songSearchService)
 {
     _songSearchService = songSearchService;
 }
コード例 #2
0
 public SongController(IRepository <Song> songRepository, ISongSearchService songSearchService)
 {
     _songSearchService = songSearchService;
     _songRepository    = songRepository;
 }
コード例 #3
0
 public ArtistGenreRule(ISongSearchService songSearchService)
 {
     _songSearchService = songSearchService;
 }