Esempio n. 1
0
 public ContactService(IContactRepository contactRepo, IMapper mapper, IClientService clientService,
                       IFileConfigurationService fileService,
                       IApiClient apiClient,
                       IOptions <AppSettingsDto> settings) : base(mapper)
 {
     _contactRepo   = contactRepo;
     _apiClient     = apiClient;
     _settings      = settings;
     _clientService = clientService;
     _fileService   = fileService;
 }
Esempio n. 2
0
 public FileConfigurationController(IFileConfigurationService fileService)
 {
     _fileService = fileService;
 }
Esempio n. 3
0
 public ClusterService(IFileConfigurationService fileConfigurationService)
 {
     _fileConfigurationService = fileConfigurationService;
 }