using DamageAssesment.Api.SurveyResponses.Interfaces; namespace DamageAssesment.Api.SurveyResponses.Bases { public class ServiceProviderBase { protected readonly IConfiguration configuration; protected readonly IHttpUtil httpUtil; protected readonly ILogger logger; protected string ressource; protected string urlBase; public ServiceProviderBase(IConfiguration configuration, IHttpUtil httpUtil, ILogger logger, string ressource, string urlBase) { this.configuration = configuration; this.httpUtil = httpUtil; this.logger = logger; this.ressource = ressource; this.urlBase = urlBase; } } }