// This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IWebHostEnvironment env, LibraryCatalogDbContext dataContext) { app.UseSwagger(); app.UseSwaggerUI(options => { options.SwaggerEndpoint("/swagger/v1/swagger.json", "Library Catalog API V1"); options.RoutePrefix = string.Empty; }); if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } dataContext.Database.EnsureCreated(); app.UseCors(options => options.AllowAnyOrigin().AllowAnyMethod().AllowAnyHeader()); app.UseRouting(); app.UseEndpoints(endpoints => { endpoints.MapControllers(); }); }
public PublishersController(LibraryCatalogDbContext dataContext, IMapper mapper) { _dataContext = dataContext; _mapper = mapper; }