示例#1
0
 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;
 }