Пример #1
0
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IWebHostEnvironment env, WgSystemsDbContext wgSystemsDbContext)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
            }
            wgSystemsDbContext.Database.EnsureCreated();

            app.UseSwagger();

            app.UseSwaggerUI(c =>
            {
                c.SwaggerEndpoint("/swagger/v1/swagger.json", "My API V1");
            });

            app.UseAuthentication();

            app.UseHttpsRedirection();

            app.UseRouting();

            app.UseAuthorization();

            app.UseEndpoints(endpoints =>
            {
                endpoints.MapControllers();
            });
        }
Пример #2
0
 public ProductController(WgSystemsDbContext _wgSystemsDbContext)
 {
     wgSystemsDbContext = _wgSystemsDbContext;
 }
Пример #3
0
 public CategoryController(WgSystemsDbContext _wgSystemsDbContext)
 {
     wgSystemsDbContext = _wgSystemsDbContext;
 }