public PartnerContactsController( IPartnerContactService partnerContactService, IApiKeyService apiKeyService, IMapper mapper, ILogFactory logFactory) { _partnerContactService = partnerContactService; _apiKeyService = apiKeyService; _mapper = mapper; _log = logFactory.CreateLog(this); }
public PartnerContactController(IPartnerContactService service) { _service = service; }