Ejemplo n.º 1
0
 public SyncClientFactory(IHttpClientFactory clientFactory,
                          IOptions <ProcessExplorerWebClientOptions> options,
                          ITokenService tokenService,
                          ICommunicationTypeService typeService)
 {
     _clientFactory = clientFactory;
     _options       = options;
     _tokenService  = tokenService;
     _typeService   = typeService;
 }
Ejemplo n.º 2
0
 public LoginEveryTimeBehaviour(ILoggerWrapper logger,
                                ITokenService tokenService,
                                IAuthenticationClient client,
                                IInternet internet,
                                ISessionService session,
                                IUnitOfWork work,
                                ICommunicationTypeClient communication,
                                ICommunicationTypeService communicationTypeService)
     : base(logger, tokenService, client, internet, session, work, communication, communicationTypeService)
 {
 }
Ejemplo n.º 3
0
 public CommunicationTypeCheckBehaviour(ICommunicationTypeClient communication,
                                        ICommunicationTypeService communicationTypeService,
                                        IInternet internet,
                                        ILoggerWrapper wrapper,
                                        IDateTime dateTime,
                                        ISessionService session,
                                        INotificationService notification)
 {
     _communication            = communication;
     _communicationTypeService = communicationTypeService;
     _logger       = wrapper;
     _time         = dateTime;
     _internet     = internet;
     _session      = session;
     _notification = notification;
 }
Ejemplo n.º 4
0
 protected LoginBehaviourRoot(ILoggerWrapper logger,
                              ITokenService tokenService,
                              IAuthenticationClient client,
                              IInternet internet,
                              ISessionService session,
                              IUnitOfWork work,
                              ICommunicationTypeClient communication,
                              ICommunicationTypeService communicationTypeService)
 {
     _logger                   = logger;
     _tokenService             = tokenService;
     _client                   = client;
     _internet                 = internet;
     _session                  = session;
     _work                     = work;
     _communication            = communication;
     _communicationTypeService = communicationTypeService;
 }
Ejemplo n.º 5
0
 public GetAllQueryHandler(ICommunicationTypeService service)
 {
     _service = service;
 }
Ejemplo n.º 6
0
 public ChangeTypeCommandHandler(ICommunicationTypeService service)
 {
     _service = service;
 }