public DiscController(IDiscAppService discAppService,
                       INotificationHandler <DomainNotification> notifications,
                       IMediatorHandler mediator)
     : base(notifications, mediator)
 {
     this.discAppService = discAppService;
 }
 public SpotifyIntegrationAppService(IUnityOfWork uow, ISpotiFyIntegrationService spotiFyIntegrationService, IMapper mapper, IDiscAppService discAppService)
 {
     this._uow = uow;
     this.spotiFyIntegrationService = spotiFyIntegrationService;
     this.mapper         = mapper;
     this.discAppService = discAppService;
 }
Exemplo n.º 3
0
 public SpotifyIntegrationController(IDiscAppService discAppService,
                                     ISpotifyIntegrationAppService spotifyIntegrationAppService,
                                     INotificationHandler <DomainNotification> notifications,
                                     IMediatorHandler mediator)
     : base(notifications, mediator)
 {
     this.discAppService = discAppService;
     this.spotifyIntegrationAppService = spotifyIntegrationAppService;
 }