Skip to content

Instantly share code, notes, and snippets.

@vector623
Last active May 5, 2018 20:59
Show Gist options
  • Save vector623/5e9c70017a36d5e6b428bf2c46b9602d to your computer and use it in GitHub Desktop.
Save vector623/5e9c70017a36d5e6b428bf2c46b9602d to your computer and use it in GitHub Desktop.
public class StatusController : Controller
{
public ILoggerFactory LoggerFactory { get; }
public DbConnectionStringBuilder ConnectionStringBuilder { get; }
public StatusController(DbConnectionStringBuilder connectionStringBuilder, ILoggerFactory loggerFactory)
{
ConnectionStringBuilder = connectionStringBuilder;
LoggerFactory = loggerFactory;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment