예제 #1
0
 public BateauxController(FlotteContext context)
 {
     _context = context;
 }
 public WagonsController(FlotteContext context)
 {
     _context = context;
 }
예제 #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, SchoolContext context)
        public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory, FlotteContext context)
        {
            loggerFactory.AddConsole(Configuration.GetSection("Logging"));
            loggerFactory.AddDebug();

            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
                app.UseDatabaseErrorPage();
                app.UseBrowserLink();
            }
            else
            {
                app.UseExceptionHandler("/Home/Error");
            }

            app.UseStaticFiles();

            app.UseIdentity();

            // Add external authentication middleware below. To configure them please see http://go.microsoft.com/fwlink/?LinkID=532715

            app.UseMvc(routes =>
            {
                routes.MapRoute(
                    name: "default",
                    template: "{controller=Home}/{action=Index}/{id?}");
            });

            //DbInitializer.Initialize(context);
            DbInitializer.InitializeFleet(context);
        }
 public LocomotiveController(FlotteContext context)
 {
     _context = context;
 }
예제 #5
0
 public HomeController(FlotteContext context)
 {
     _context = context;
 }
예제 #6
0
 public MarinsController(FlotteContext context)
 {
     _context = context;
 }