예제 #1
0
 public ActionManager(UserManager <User> userManager, IRepositoryWrapper repoWrapper, IMapper mapper,
                      IParticipantStatusManager participantStatusManager, IParticipantManager participantManager,
                      IEventWrapper eventWrapper)
 {
     _userManager = userManager;
     _repoWrapper = repoWrapper;
     _mapper      = mapper;
     _participantStatusManager = participantStatusManager;
     _participantManager       = participantManager;
     _eventWrapper             = eventWrapper;
 }
예제 #2
0
 public EventUserService(IRepositoryWrapper repoWrapper, UserManager <User> userManager,
                         IParticipantStatusManager participantStatusManager, IMapper mapper, IParticipantManager participantManager,
                         IEventAdmininistrationManager eventAdmininistrationManager)
 {
     this.repoWrapper = repoWrapper;
     this.userManager = userManager;
     this.participantStatusManager = participantStatusManager;
     this.mapper                       = mapper;
     this.participantManager           = participantManager;
     this.eventAdmininistrationManager = eventAdmininistrationManager;
 }
예제 #3
0
 public EventUserManager(IRepositoryWrapper repoWrapper, UserManager <User> userManager,
                         IParticipantStatusManager participantStatusManager, IMapper mapper, IParticipantManager participantManager,
                         IEventCategoryManager eventCategoryManager, IEventStatusManager eventStatusManager,
                         IEventAdministrationTypeManager eventAdministrationTypeManager,
                         IEventAdmininistrationManager eventAdmininistrationManager)
 {
     _repoWrapper = repoWrapper;
     _userManager = userManager;
     _participantStatusManager = participantStatusManager;
     _mapper                         = mapper;
     _participantManager             = participantManager;
     _eventCategoryManager           = eventCategoryManager;
     _eventStatusManager             = eventStatusManager;
     _eventAdministrationTypeManager = eventAdministrationTypeManager;
     _eventAdmininistrationManager   = eventAdmininistrationManager;
 }
 public ParticipantManager(IRepositoryWrapper repoWrapper, IEventStatusManager eventStatusManager, IParticipantStatusManager participantStatusManager)
 {
     _repoWrapper              = repoWrapper;
     _eventStatusManager       = eventStatusManager;
     _participantStatusManager = participantStatusManager;
 }