Exemple #1
0
 public RemoveEntryLogCommandHandler(
     IEntryLogRepository entryLogRepository,
     IUnitOfWork uow,
     IMediatorHandler bus,
     INotificationHandler <DomainNotification> notifications) : base(uow, bus, notifications)
 {
     this.entryLogRepository = entryLogRepository;
 }
 public GetEntryLogByUserQueryHandler(
     IEntryLogRepository entryLogRepository,
     IUnitOfWork uow,
     IMediatorHandler bus,
     INotificationHandler <DomainNotification> notifications) : base(uow, bus, notifications)
 {
     this.entryLogRepository = entryLogRepository;
 }
 public AddEntryLogCommandHandler(
     IEntryLogRepository entryLogRepository,
     IUserRepository userRepository,
     IProjectRepository projectRepository,
     IUnitOfWork uow,
     IMediatorHandler bus,
     INotificationHandler <DomainNotification> notifications) : base(uow, bus, notifications)
 {
     this.entryLogRepository = entryLogRepository;
     this.userRepository     = userRepository;
     this.projectRepository  = projectRepository;
 }