/// <summary> /// This method gets called by the runtime. Use this method to configure the HTTP request pipeline. /// </summary> /// <param name="app"></param> /// <param name="env"></param> public void Configure(IApplicationBuilder app, IWebHostEnvironment env) { if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } DalHelper.Configure(app, env); }
public static void Main(string[] args) { if (args.Contains("--proto")) { DalHelper.CreateProto(); } else { CreateHostBuilder(args).Build().Run(); } }
/// <summary> /// This method gets called by the runtime. Use this method to add services to the container. /// For more information on how to configure your application, visit https://go.microsoft.com/fwlink/?LinkID=398940 /// </summary> /// <param name="services"></param> public void ConfigureServices(IServiceCollection services) { DalHelper.ConfigureServices(services, Configuration); }