public SearchController(OtherService services, ArtistService artistService, AlbumService albumService, SongService songService)
 {
     this.services = services;
     this.artistService = artistService;
     this.albumService = albumService;
     this.songService = songService;
 }
 public HomeController(OtherService otherService, BrandableStringsManager brandableStringsManager)
 {
     this.otherService = otherService;
     this.brandableStringsManager = brandableStringsManager;
 }