Skip to content

Instantly share code, notes, and snippets.

@jrob5756
Last active September 29, 2018 18:00
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 jrob5756/2252064f55e29350ebeb29947cbb6d18 to your computer and use it in GitHub Desktop.
Save jrob5756/2252064f55e29350ebeb29947cbb6d18 to your computer and use it in GitHub Desktop.
// Removed for brevity
namespace JrTech.AspNetCore.Web
{
public class Startup
{
// Removed for brevity
public void ConfigureServices(IServiceCollection services)
{
services.AddFactory<IRandomNumberGenerator, RandomNumberGenerator>();
services.AddMvc();
}
// Removed for brevity
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment