public ProductCreatedHandler ( IElasticClient elasticClient, ILogger <ProductCreatedHandler> logger, IEntrepreneurService entrepreneurService ) { _elasticClient = elasticClient; _logger = logger; _entrepreneurService = entrepreneurService; }
public EntrepreneursController(IEntrepreneurService entrepreneurService, IMapper mapper) { this.entrepreneurService = entrepreneurService; this.mapper = mapper; }
public EntrepreneurController(IEntrepreneurService supplier) { _supplier = supplier; }