2016-09-06 17:09:19 -07:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Microsoft.AspNetCore.Builder;
|
|
|
|
|
using Microsoft.AspNetCore.Hosting;
|
|
|
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
|
2016-09-12 20:28:55 -07:00
|
|
|
|
using Microsoft.eShopOnContainers.Services.Ordering.SqlData.UnitOfWork;
|
2016-09-09 17:24:24 -07:00
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
2016-09-14 00:44:13 -07:00
|
|
|
|
using Microsoft.eShopOnContainers.Services.Ordering.Domain.Contracts;
|
2016-09-12 20:28:55 -07:00
|
|
|
|
using Microsoft.eShopOnContainers.Services.Ordering.SqlData.Repositories;
|
|
|
|
|
using Microsoft.eShopOnContainers.Services.Ordering.SqlData.Queries;
|
2016-09-09 17:24:24 -07:00
|
|
|
|
|
2016-09-07 13:52:26 -07:00
|
|
|
|
namespace Microsoft.eShopOnContainers.Services.Ordering.API
|
2016-09-06 17:09:19 -07:00
|
|
|
|
{
|
|
|
|
|
public class Startup
|
|
|
|
|
{
|
|
|
|
|
public Startup(IHostingEnvironment env)
|
|
|
|
|
{
|
|
|
|
|
var builder = new ConfigurationBuilder()
|
|
|
|
|
.SetBasePath(env.ContentRootPath)
|
|
|
|
|
.AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)
|
2016-11-21 10:02:52 +01:00
|
|
|
|
.AddJsonFile($"appsettings.{env.EnvironmentName}.json", optional: true);
|
|
|
|
|
|
|
|
|
|
if (env.IsDevelopment())
|
|
|
|
|
{
|
|
|
|
|
builder.AddUserSecrets();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
builder.AddEnvironmentVariables();
|
|
|
|
|
|
2016-09-06 17:09:19 -07:00
|
|
|
|
Configuration = builder.Build();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IConfigurationRoot Configuration { get; }
|
|
|
|
|
|
2016-09-09 17:24:24 -07:00
|
|
|
|
// This method gets called by the runtime.
|
|
|
|
|
// Use this method to add services to the IoC container.
|
2016-09-06 17:09:19 -07:00
|
|
|
|
public void ConfigureServices(IServiceCollection services)
|
|
|
|
|
{
|
|
|
|
|
// Add framework services.
|
|
|
|
|
services.AddMvc();
|
2016-09-09 17:24:24 -07:00
|
|
|
|
|
2016-11-21 10:02:52 +01:00
|
|
|
|
|
2016-10-06 12:21:18 -07:00
|
|
|
|
var connString = Configuration["ConnectionString"];
|
2016-09-14 00:44:13 -07:00
|
|
|
|
|
2016-11-21 10:02:52 +01:00
|
|
|
|
services.AddDbContext<OrderingDbContext>(options =>
|
|
|
|
|
{
|
|
|
|
|
options.UseSqlServer(connString)
|
|
|
|
|
.UseSqlServer(connString, b => b.MigrationsAssembly("Ordering.API"));
|
|
|
|
|
});
|
2016-09-12 20:28:55 -07:00
|
|
|
|
|
|
|
|
|
services.AddTransient<IOrderRepository, OrderRepository>();
|
2016-09-14 00:44:13 -07:00
|
|
|
|
services.AddTransient<IOrderdingQueries, OrderingQueries>();
|
2016-09-06 17:09:19 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 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)
|
|
|
|
|
{
|
|
|
|
|
loggerFactory.AddConsole(Configuration.GetSection("Logging"));
|
|
|
|
|
loggerFactory.AddDebug();
|
|
|
|
|
|
2016-11-21 10:02:52 +01:00
|
|
|
|
if (env.IsDevelopment())
|
|
|
|
|
{
|
2016-09-14 00:44:13 -07:00
|
|
|
|
app.UseDeveloperExceptionPage();
|
2016-11-21 10:02:52 +01:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-06 17:09:19 -07:00
|
|
|
|
app.UseMvc();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|