55 lines
1.8 KiB
C#
55 lines
1.8 KiB
C#
using Microsoft.AspNetCore.Builder;
|
|
using Microsoft.AspNetCore.Hosting;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Hosting;
|
|
using RIZO.Server.IService;
|
|
using RIZO.Server.Service;
|
|
using RIZO.Server.Configuration;
|
|
using RIZO.Server.IConfiguration;
|
|
using Infrastructure;
|
|
|
|
namespace RIZO.Server.Start
|
|
{
|
|
public class Startup
|
|
{
|
|
public Startup(Microsoft.Extensions.Configuration.IConfiguration configuration)
|
|
{
|
|
Configuration = configuration;
|
|
}
|
|
|
|
public Microsoft.Extensions.Configuration.IConfiguration Configuration { get; }
|
|
|
|
// This method gets called by the runtime. Use this method to add services to the container.
|
|
public void ConfigureServices(IServiceCollection services)
|
|
{
|
|
services.AddSingleton<IUtils, Utils>();
|
|
services.AddTransient<IConfiguration.IConfiguration, Configuration.Configuration>();
|
|
services.AddTransient<IEFContext.IEFContext, EFContext.EFContext>();
|
|
services.AddTransient<ILoginService, LoginService>();
|
|
services.AddTransient<IMenuService, MenuService>();
|
|
services.AddTransient<IUserService, UserService>();
|
|
|
|
services.AddControllers();
|
|
services.AddLogo();
|
|
}
|
|
|
|
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
|
|
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
|
|
{
|
|
if (env.IsDevelopment())
|
|
{
|
|
app.UseDeveloperExceptionPage();
|
|
}
|
|
|
|
app.UseRouting();
|
|
|
|
app.UseAuthorization();
|
|
|
|
app.UseEndpoints(endpoints =>
|
|
{
|
|
endpoints.MapControllers();
|
|
});
|
|
}
|
|
}
|
|
}
|