public BabaController(ISongService songService, IContributorService contributorService, IHymnalService hymnalService, IPublisherService publisherService, IVoicingService voicingService, IInstrumentationService instrumentationService, ISongEditionService songEditionService ) { _songService = songService; _contributorService = contributorService; _hymnalService = hymnalService; _publisherService = publisherService; _voicingService = voicingService; _instrumentationService = instrumentationService; _songEditionService = songEditionService; }
public LibraryController(ILibraryService libraryService, IHymnalService hymnalService, UserManager <ApplicationUser> userManager) { _libraryService = libraryService; _hymnalService = hymnalService; _userManager = userManager; }