public IndividualService(IVerintConnection verint, IEnumerable <IIndividualWeighting> individualWeightings, IPropertyService propertyService, ILogger <IndividualService> logger)
 {
     _verintConnection     = verint.Client();
     _individualWeightings = individualWeightings;
     _propertyService      = propertyService;
     _logger = logger;
 }
Exemple #2
0
 public OrganisationService(IVerintConnection verint, IEnumerable <IOrganisationWeighting> organisationWeightings, IPropertyService propertyService, ILogger <OrganisationService> logger)
 {
     _logger                 = logger;
     _verintConnection       = verint.Client();
     _organisationWeightings = organisationWeightings;
     _propertyService        = propertyService;
 }
 public InteractionService(IVerintConnection verint, IIndividualService individualService, IOrganisationService organisationService, ILogger <InteractionService> logger)
 {
     _verintConnection    = verint.Client();
     _individualService   = individualService;
     _organisationService = organisationService;
     _logger = logger;
 }
Exemple #4
0
 public CaseService(IVerintConnection verint,
                    ILogger <CaseService> logger,
                    IInteractionService interactionService,
                    CaseToFWTCaseCreateMapper caseToFWTCaseCreateMapper,
                    IIndividualService individualService,
                    ICacheProvider cacheProvider)
 {
     _logger                    = logger;
     _verintConnection          = verint.Client();
     _interactionService        = interactionService;
     _caseToFWTCaseCreateMapper = caseToFWTCaseCreateMapper;
     _individualService         = individualService;
     _cacheProvider             = cacheProvider;
 }
Exemple #5
0
 public VerintOnlineFormService(IVerintConnection connection, ICaseService caseService)
 {
     _VOFConnection = connection.VOFClient();
     _caseService   = caseService;
 }
 public PropertyService(IVerintConnection verint, ILogger <PropertyService> logger)
 {
     _logger           = logger;
     _verintConnection = verint.Client();
 }
 public UpdateService(IVerintConnection verint)
 {
     _verintConnection = verint.Client();
 }
 public StreetService(IVerintConnection verint)
 {
     _verintConnection = verint.Client();
 }