Skip to content

Instantly share code, notes, and snippets.

@configureappio
Created March 24, 2018 07:44
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 configureappio/963568bb44b917d063c2d7132c752a20 to your computer and use it in GitHub Desktop.
Save configureappio/963568bb44b917d063c2d7132c752a20 to your computer and use it in GitHub Desktop.
Example of controller taking the domain object for configuration
public class HomeController : Controller
{
private readonly MyAppSettings _settings;
public HomeController(MyAppSettings settings)
{
_settings = settings ?? throw new ArgumentNullException(nameof(settings));
}
public IActionResult Index()
{
return View(_settings);
}
public IActionResult Error()
{
return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment