Exemplo n.º 1
0
 public GetSharedUserByIdHandler(ISharedUserRepository repository,
                                 IMapper mapper)
 {
     this.repository = repository;
     this.mapper     = mapper;
 }
Exemplo n.º 2
0
 public CheckIfSharedUserExistsHandler(ISharedUserRepository repository)
 {
     this.repository = repository;
 }
Exemplo n.º 3
0
 public GetSharedUsersByNotificationIdHandler(ISharedUserRepository repository,
                                              IMapper mapper)
 {
     this.repository = repository;
     this.mapper     = mapper;
 }
 public DeleteSharedUserForNotificationHandler(ISharedUserRepository repository, ISharedUserHistoryRepository historyRepository, IwsContext context)
 {
     this.repository        = repository;
     this.historyRepository = historyRepository;
     this.context           = context;
 }
Exemplo n.º 5
0
 public SharedUserAdded(ISharedUserRepository repository, IwsContext context)
 {
     this.repository = repository;
     this.context    = context;
 }