public AddAccountHandler( IAccountRepository accountRepository, IMapTo <AccountGetV1, Account> accountMapper, IOwnerRepository ownerRepository) { _accountRepository = accountRepository; _accountMapper = accountMapper; _ownerRepository = ownerRepository; }
public AdminController(ISpecialistManagementService specialistManagementService, IRequestManagementService requestsManagementService, IMapTo <RequestDTO, RequestDetailsViewModel> requestDetailsMapper, IMap <RequestDTO, RequestEditViewModel> requestEditMapper, IMap <SpecialistDTO, SpecialistViewModel> specialistMapper) { this.specialistManagementService = specialistManagementService; this.requestsManagementService = requestsManagementService; this.requestDetailsMapper = requestDetailsMapper; this.requestEditMapper = requestEditMapper; this.specialistMapper = specialistMapper; }
public GetAllHandler(IAccountRepository accountRepository, IMapTo <AccountGetV1, Account> accountMapper) { _accountRepository = accountRepository; _accountMapper = accountMapper; }
public MapperLoggingDecorator(IMapTo <TIn1, TOut> underlyingMapper, ILogger <IMapTo <TIn1, TOut> > logger) { _underlyingMapper = underlyingMapper; _logger = logger; }
public ParticipantResponseMapper(IMapTo <RoomResponse, RoomSummaryResponse> roomResponseMapper, IMapTo <VHLinkedParticipantResponse, LinkedParticipantResponse> linkedParticipantResponseMapper) { _roomResponseMapper = roomResponseMapper; _linkedParticipantResponseMapper = linkedParticipantResponseMapper; }
public ParticipantResponseForVhoMapper(IMapTo <RoomResponse, RoomSummaryResponse> roomResponseMapper) { _roomResponseMapper = roomResponseMapper; }
public ConferenceForJudgeResponseMapper(IMapTo <Participant, ParticipantForJudgeResponse> participantForJudgeResponseMapper) { _participantForJudgeResponseMapper = participantForJudgeResponseMapper; }
public RequestMapper(IMap <Message, MessageDTO> messageMapper, IMapTo <Specialist, SpecialistSlim> specialistMapper) { this.specialistMapper = specialistMapper; this.messageMapper = messageMapper; }
public AccountMapper(IMapTo <TransactionGetV1, Transaction> transactionMapper) { _transactionMapper = transactionMapper; }
public ConferenceForVhOfficerResponseMapper(IMapTo <IEnumerable <ParticipantSummaryResponse>, List <ParticipantForUserResponse> > participantForUserResponseMapper) { _participantForUserResponseMapper = participantForUserResponseMapper; }
public EndpointsResponseMapper(IMapTo <RoomResponse, RoomSummaryResponse> roomResponseMapper) { _roomResponseMapper = roomResponseMapper; }
public ParticipantForUserResponseMapper(IMapTo <RoomResponse, RoomSummaryResponse> roomResponseMapper) { _roomResponseMapper = roomResponseMapper; }
public RequestApplicationController(IRequestManagementService requestService, IMapTo <RequestDTO, RequestDetailsViewModel> requestMapper) { this.requestService = requestService; this.requestMapper = requestMapper; }
public ConferenceResponseVhoMapper(IMapTo <ParticipantDetailsResponse, ParticipantResponseVho> participantResponseVhoMapper) { _participantResponseVhoMapper = participantResponseVhoMapper; }
public ConferenceResponseMapper(IMapTo <ParticipantDetailsResponse, ParticipantResponse> participantResponseMapper, IMapTo <EndpointResponse, int, VideoEndpointResponse> videoEndpointResponseMapper) { _participantResponseMapper = participantResponseMapper; _videoEndpointResponseMapper = videoEndpointResponseMapper; }