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