Exemple #1
0
 public GetMcPkgsUnderCommPkgInProjectQueryHandler(
     IMcPkgApiService mcPkgApiService,
     IPlantProvider plantProvider)
 {
     _plantProvider   = plantProvider;
     _mcPkgApiService = mcPkgApiService;
 }
 public CreateInvitationCommandHandler(
     IPlantProvider plantProvider,
     IFusionMeetingClient meetingClient,
     IInvitationRepository invitationRepository,
     IUnitOfWork unitOfWork,
     ICommPkgApiService commPkgApiService,
     IMcPkgApiService mcPkgApiService,
     IPersonApiService personApiService,
     IFunctionalRoleApiService functionalRoleApiService,
     IOptionsMonitor <MeetingOptions> meetingOptions,
     IPersonRepository personRepository,
     ICurrentUserProvider currentUserProvider,
     ILogger <CreateInvitationCommandHandler> logger)
 {
     _plantProvider            = plantProvider;
     _meetingClient            = meetingClient;
     _invitationRepository     = invitationRepository;
     _unitOfWork               = unitOfWork;
     _commPkgApiService        = commPkgApiService;
     _mcPkgApiService          = mcPkgApiService;
     _personApiService         = personApiService;
     _functionalRoleApiService = functionalRoleApiService;
     _meetingOptions           = meetingOptions;
     _personRepository         = personRepository;
     _currentUserProvider      = currentUserProvider;
     _logger = logger;
 }
Exemple #3
0
 public UnCompletePunchOutCommandHandler(
     IPlantProvider plantProvider,
     IInvitationRepository invitationRepository,
     IUnitOfWork unitOfWork,
     ICurrentUserProvider currentUserProvider,
     IMcPkgApiService mcPkgApiService,
     IPermissionCache permissionCache)
 {
     _plantProvider        = plantProvider;
     _invitationRepository = invitationRepository;
     _unitOfWork           = unitOfWork;
     _currentUserProvider  = currentUserProvider;
     _mcPkgApiService      = mcPkgApiService;
     _permissionCache      = permissionCache;
 }
 public EditInvitationCommandHandler(
     IInvitationRepository invitationRepository,
     IFusionMeetingClient meetingClient,
     IPlantProvider plantProvider,
     IUnitOfWork unitOfWork,
     IMcPkgApiService mcPkgApiService,
     ICommPkgApiService commPkgApiService,
     IPersonApiService personApiService,
     IFunctionalRoleApiService functionalRoleApiService,
     IOptionsMonitor <MeetingOptions> meetingOptions,
     IPersonRepository personRepository)
 {
     _invitationRepository     = invitationRepository;
     _meetingClient            = meetingClient;
     _plantProvider            = plantProvider;
     _unitOfWork               = unitOfWork;
     _mcPkgApiService          = mcPkgApiService;
     _commPkgApiService        = commPkgApiService;
     _personApiService         = personApiService;
     _functionalRoleApiService = functionalRoleApiService;
     _meetingOptions           = meetingOptions;
     _personRepository         = personRepository;
 }
Exemple #5
0
 public BusReceiverService(
     IInvitationRepository invitationRepository,
     IPlantSetter plantSetter,
     IUnitOfWork unitOfWork,
     ITelemetryClient telemetryClient,
     IReadOnlyContext context,
     IMcPkgApiService mcPkgApiService,
     IApplicationAuthenticator authenticator,
     IOptionsSnapshot <AuthenticatorOptions> options,
     ICurrentUserSetter currentUserSetter,
     IBearerTokenSetter bearerTokenSetter)
 {
     _invitationRepository = invitationRepository;
     _plantSetter          = plantSetter;
     _unitOfWork           = unitOfWork;
     _telemetryClient      = telemetryClient;
     _context           = context;
     _mcPkgApiService   = mcPkgApiService;
     _authenticator     = authenticator;
     _currentUserSetter = currentUserSetter;
     _bearerTokenSetter = bearerTokenSetter;
     _ipoApiOid         = options.Value.IpoApiObjectId;
 }