Skip to content

Instantly share code, notes, and snippets.

@thaianhduc
Created March 23, 2019 08:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thaianhduc/9f17cc1846e0ab0bd201d69e144d644e to your computer and use it in GitHub Desktop.
Save thaianhduc/9f17cc1846e0ab0bd201d69e144d644e to your computer and use it in GitHub Desktop.
using Microsoft.Extensions.Configuration;
namespace CoolApp.ApplicationService
{
public class JsonAppConfigService : IAppConfigService
{
private readonly string _defaultCurrency;
public JsonAppConfigService(IConfiguration configuration)
{
_defaultCurrency = configuration["DefaultCurrency"];
}
public string GetDefaultCurrency() => _defaultCurrency;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment