예제 #1
0
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IHostingEnvironment env)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
                app.UseBrowserLink();
            }
            else
            {
                app.UseExceptionHandler("/Home/Error");
            }

            ResturantFactory.Enable(this, app, true);

            app.UseStaticFiles();

            app.UseMvc(routes =>
            {
                routes.MapRoute(
                    name: "default",
                    template: "{controller=Home}/{action=Index}/{id?}");
            });
        }
예제 #2
0
 public BaiduTest()
 {
     ResturantFactory.Enable(this, null, false);
 }
예제 #3
0
        public MeituanTest()
        {
            TimeSpan t;

            ResturantFactory.Enable(this, null, true);
        }
예제 #4
0
 public EleTest()
 {
     ResturantFactory.Enable(this, null, true);
 }