public ConnectMalinfoToDistributionController(DistributionService
                                               distributionService, MalinfoService malInfoService,
                                               KhInventoryDbContext _db)
 {
     db = _db;
     _distributionService = distributionService;
     _malInfoService      = malInfoService;
 }
Exemplo n.º 2
0
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
        {
            app.UseDeveloperExceptionPage();
            app.UseDatabaseErrorPage();

            try
            {
                KhInventoryDbContext.UpdateDatabase(app);
            }
            catch (Exception e)
            {
                //ignore
            }


            if (env.IsDevelopment())
            {
            }
            else
            {
                /*app.UseExceptionHandler("/Error");
                 * // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
                 * app.UseHsts();*/
            }

            app.UseHttpsRedirection();
            app.UseStaticFiles();
            app.UseSpaStaticFiles();

            app.UseRouting();

            app.UseAuthentication();
            app.UseIdentityServer();
            app.UseAuthorization();
            app.UseEndpoints(endpoints =>
            {
                endpoints.MapControllerRoute(
                    name: "default",
                    pattern: "{controller}/{action=Index}/{id?}");
                endpoints.MapRazorPages();
            });

            app.UseSpa(spa =>
            {
                spa.Options.SourcePath = "ClientApp";

                if (env.IsDevelopment())
                {
                    spa.UseReactDevelopmentServer(npmScript: "start");
                }
            });

            app.UseExceptionHandler("/error"); // Add this
            app.UseEndpoints(endpoints => endpoints.MapControllers());
        }
Exemplo n.º 3
0
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
        {
            KhInventoryDbContext.UpdateDatabase(app);
                app.UseExceptionHandler("/Errors");
            if (env.IsDevelopment())
            {
                //app.UseDeveloperExceptionPage();
            }
            else
            {
                // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
                app.UseHsts();
            }

            app.UseHttpsRedirection();
            app.UseStaticFiles();
            app.UseSpaStaticFiles();

            app.UseRouting();
          

            app.UseEndpoints(endpoints =>
            {
                endpoints.MapControllerRoute(
                    name: "default",
                    pattern: "{controller}/{action=Index}/{id?}");
            });

            app.UseSpa(spa =>
            {
                spa.Options.SourcePath = "ClientApp";

                if (env.IsDevelopment())
                {
                    spa.UseReactDevelopmentServer(npmScript: "start");
                }
            });


             // Register the Swagger generator and the Swagger UI middlewares
    app.UseOpenApi();
   app.UseSwaggerUi3();

       // It should be one of your very first registrations
app.UseExceptionHandler("/error"); // Add this
app.UseEndpoints(endpoints => endpoints.MapControllers());

        }
Exemplo n.º 4
0
 public GenericImp(KhInventoryDbContext KhInventoryDbContext)
 {
     db = KhInventoryDbContext;
 }
Exemplo n.º 5
0
 public GenericSafeDeleteImp(KhInventoryDbContext KhInventoryDbContext) : base(KhInventoryDbContext)
 {
 }
 public GenericSingleImp(KhInventoryDbContext KhInventoryDbContext) : base(KhInventoryDbContext)
 {
 }