Exemple #1
0
 public LivrosController(LivrariaTesteContext context)
 {
     _context = context;
 }
Exemple #2
0
 public static void Initialize(LivrariaTesteContext context)
 {
     context.Database.EnsureCreated();
 }
Exemple #3
0
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory, LivrariaTesteContext context)
        {
            loggerFactory.AddConsole(Configuration.GetSection("Logging"));
            loggerFactory.AddDebug();

            app.UseMvc();

            DbInitializer.Initialize(context);

            // Ativando middlewares para uso do Swagger
            app.UseSwagger();
            app.UseSwaggerUI(c =>
            {
                c.SwaggerEndpoint("/swagger/v1/swagger.json",
                                  "Conversor de Temperaturas");
            });
        }