DamageAssessment_Backend/DamageAssesmentApi/DamageAssesment.Api.DocuLinks/Program.cs

44 lines
1.3 KiB
C#
Raw Permalink Normal View History

2023-09-22 10:52:17 -05:00
using DamageAssesment.Api.DocuLinks.Db;
using DamageAssesment.Api.DocuLinks.Interfaces;
using DamageAssesment.Api.DocuLinks.Providers;
2023-08-31 18:00:51 -05:00
using Microsoft.EntityFrameworkCore;
2023-09-13 15:49:59 -05:00
using System.Reflection;
2023-08-31 18:00:51 -05:00
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddControllers();
2023-09-13 15:49:59 -05:00
builder.Services.AddSwaggerGen(c =>
{
// Include XML comments from your assembly
var xmlFile = $"{Assembly.GetExecutingAssembly().GetName().Name}.xml";
var xmlPath = Path.Combine(AppContext.BaseDirectory, xmlFile);
c.IncludeXmlComments(xmlPath);
});
2023-08-31 18:00:51 -05:00
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
builder.Services.AddEndpointsApiExplorer();
builder.Services.AddSwaggerGen();
2023-09-22 10:52:17 -05:00
builder.Services.AddScoped<IDoculinkProvider, DoculinkProvider>();
2023-08-31 18:00:51 -05:00
builder.Services.AddScoped<IUploadService, UploadService>();
builder.Services.AddScoped<IAzureBlobService, AzureBlobService>();
builder.Services.AddAutoMapper(AppDomain.CurrentDomain.GetAssemblies()); //4/30
2023-09-22 10:52:17 -05:00
builder.Services.AddDbContext<DoculinkDbContext>(option =>
2023-08-31 18:00:51 -05:00
{
2023-09-26 11:40:55 -05:00
option.UseSqlServer("DoculinConnection");
2023-08-31 18:00:51 -05:00
});
var app = builder.Build();
// Configure the HTTP request pipeline.
if (app.Environment.IsDevelopment())
{
app.UseSwagger();
app.UseSwaggerUI();
}
app.UseAuthorization();
app.MapControllers();
app.Run();