Esempio n. 1
0
 public ObjectService(IFundaClient client, ServiceConfiguration configuration)
 {
     _client        = client ?? throw new ArgumentNullException(nameof(client));
     _configuration = configuration ?? throw new ArgumentNullException(nameof(configuration));
 }
Esempio n. 2
0
 public FundaService(IFundaClient fundaClient, IRealEstateMapper realEstateMapper)
 {
     _fundaClient      = fundaClient;
     _realEstateMapper = realEstateMapper;
 }
Esempio n. 3
0
 public MainService(IFundaClient fundaClient, IMakelaarService makelaarService)
 {
     this.makelaarService = makelaarService;
     this.fundaClient     = fundaClient;
 }