Beispiel #1
0
 public StyleController(IStyleAppService service)
 {
     this.service = service;
 }
Beispiel #2
0
 public SongController(ISongAppService songService, IArtistAppService artistService, IStyleAppService styleService)
 {
     this.songService   = songService;
     this.artistService = artistService;
     this.styleService  = styleService;
 }