public DiscCommandHandler(IUnityOfWork uow, IMediatorHandler mediator,
                           INotificationHandler <DomainNotification> notifications,
                           IDiscRepository discRepository) : base(uow, mediator, notifications)
 {
     this.mediator       = mediator;
     this.discRepository = discRepository;
 }
Beispiel #2
0
 public Importer(IDiscRepository discRepository,
                 IPerformerRepository performerRepository,
                 IFileRepository fileRepository
                 )
 {
     this.discRepository      = discRepository;
     this.performerRepository = performerRepository;
     this.fileRepository      = fileRepository;
 }
 public DiscAppService(IDiscRepository discRepository, IMapper mapper, IMediatorHandler mediator)
 {
     this.discRepository = discRepository;
     this.mapper         = mapper;
     this.mediator       = mediator;
 }