示例#1
0
 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;
 }
示例#2
0
 public LibraryController(ILibraryService libraryService, IHymnalService hymnalService, UserManager <ApplicationUser> userManager)
 {
     _libraryService = libraryService;
     _hymnalService  = hymnalService;
     _userManager    = userManager;
 }