Ejemplo n.º 1
0
 /// <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);
 }
Ejemplo n.º 2
0
 public static void Main(string[] args)
 {
     if (args.Contains("--proto"))
     {
         DalHelper.CreateProto();
     }
     else
     {
         CreateHostBuilder(args).Build().Run();
     }
 }
Ejemplo n.º 3
0
 /// <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);
 }