Beispiel #1
0
 public NotificationAuditMap(IInternalUserRepository internalUserRepository,
                             INotificationAuditScreenRepository notificationAuditScreenRepository, INotificationUserRepository notificationUserRepository)
 {
     this.internalUserRepository            = internalUserRepository;
     this.notificationAuditScreenRepository = notificationAuditScreenRepository;
     this.notificationUserRepository        = notificationUserRepository;
 }
Beispiel #2
0
 public NotificationApiController(INotificationRepository notificationRepo,
                                  UserManager <ApplicationUser> userManager, INotificationResponseRepository notificationResponseRepo, INotificationUserRepository notificationUser)
 {
     _userManager              = userManager;
     _notificationRepo         = notificationRepo;
     _notificationResponseRepo = notificationResponseRepo;
     _notificationUser         = notificationUser;
 }
Beispiel #3
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="notificationUserRepository"></param>
 /// <param name="notificationRepository"></param>
 /// <param name="userRepository"></param>
 public NotificationUserManipulation(INotificationUserRepository notificationUserRepository, INotificationRepository notificationRepository, IUserRepository userRepository)
 {
     _notificationUserRepository = notificationUserRepository;
     _notificationRepository     = notificationRepository;
     _userRepository             = userRepository;
 }
Beispiel #4
0
 public GetUserByIdHandler(INotificationUserRepository notificationUserRepository, IMap <User, ChangeUserData> mapper)
 {
     this.notificationUserRepository = notificationUserRepository;
     this.mapper = mapper;
 }
 public MovementAuditRecordMap(INotificationUserRepository notificationUserRepository)
 {
     this.notificationUserRepository = notificationUserRepository;
 }
 public MovementAuditRecordMap(IInternalUserRepository internalUserRepository, INotificationUserRepository notificationUserRepository)
 {
     this.internalUserRepository     = internalUserRepository;
     this.notificationUserRepository = notificationUserRepository;
 }
Beispiel #7
0
 public GetAllUsersHandler(INotificationUserRepository notificationUserRepository,
                           IMap <IEnumerable <User>, IEnumerable <ChangeUserData> > mapper)
 {
     this.notificationUserRepository = notificationUserRepository;
     this.mapper = mapper;
 }
Beispiel #8
0
 public NotificationUserService(INotificationUserRepository notificationUserRepository, IUnitOfWork unitOfWork)
 {
     _notificationUserRepository = notificationUserRepository;
     _unitOfWork = unitOfWork;
 }
Beispiel #9
0
 public SharedUserMap(INotificationUserRepository notificationUserRepository)
 {
     this.notificationUserRepository = notificationUserRepository;
 }
 public NotificationUpdateHistorySummaryDataMap(INotificationUserRepository notificationUserRepository)
 {
 }
Beispiel #11
0
 public TrainingTutorService(ITrainingTutorRepository trainingTutorRepository, IUnitOfWork unitOfWork, INotificationUserRepository notificationUserRepository)
 {
     _trainingTutorRepository = trainingTutorRepository;
     _unitOfWork = unitOfWork;
     _notificationUserRepository = notificationUserRepository;
 }
 public NotificationHub(Management management, INotificationUserRepository notificationUserRepository)
 {
     _management = management;
     _notificationUserRepository = notificationUserRepository;
 }