Add project files.
This commit is contained in:
@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace OemanTrader.FinantialModelingPrepAPI
|
||||
{
|
||||
public class FinancialModelingPrepHttpClientFactory
|
||||
{
|
||||
private readonly string _apiKey;
|
||||
|
||||
public FinancialModelingPrepHttpClientFactory(string apiKey)
|
||||
{
|
||||
_apiKey = apiKey;
|
||||
}
|
||||
|
||||
public FinancialModelingPrepHttpClient CreateHttpClient()
|
||||
{
|
||||
return new FinancialModelingPrepHttpClient(_apiKey);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user