public GetSharedUserByIdHandler(ISharedUserRepository repository,
                                 IMapper mapper)
 {
     this.repository = repository;
     this.mapper     = mapper;
 }
示例#2
0
 public CheckIfSharedUserExistsHandler(ISharedUserRepository repository)
 {
     this.repository = repository;
 }
示例#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;
 }
示例#5
0
 public SharedUserAdded(ISharedUserRepository repository, IwsContext context)
 {
     this.repository = repository;
     this.context    = context;
 }