Exemple #1
0
 public BookController(
     IBookElasticService bookElasticService,
     IMapper mapper)
 {
     _bookElasticService = bookElasticService;
     _mapper             = mapper;
 }
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IWebHostEnvironment env, IBookElasticService bookService)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
                bookService.InitClient();
            }

            app.UseHttpsRedirection();

            app.UseRouting();

            app.UseAuthorization();

            app.UseEndpoints(endpoints => { endpoints.MapControllers(); });
        }