Skip to content

Instantly share code, notes, and snippets.

@nishanc
Created May 6, 2019 08:15
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 nishanc/9eb07e7661bf4d6d5ce14bd1ac725a36 to your computer and use it in GitHub Desktop.
Save nishanc/9eb07e7661bf4d6d5ce14bd1ac725a36 to your computer and use it in GitHub Desktop.
// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
services.AddDbContext<DataContext>(x => x.UseSqlServer(Configuration.GetConnectionString("DefaultConnection")));
services.AddControllers()
.AddNewtonsoftJson();
services.AddScoped<IAuthRepository, AuthRepository>();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment