public async Task <CompanyProfile> GetCompanyProfile(string url, string apiKey, string ticker)
        {
            var companyProfile = await Task.Run(() => _companyProfileService.GetCompanyProfile
                                                (
                                                    url,
                                                    apiKey,
                                                    ticker)
                                                );

            return(companyProfile);
        }