2024-11-14 15:17:43 +05:00
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
|
using Persistence.Repositories;
|
|
|
|
|
using Persistence.Database.Model;
|
|
|
|
|
using Persistence.Repository.Data;
|
|
|
|
|
using Persistence.Repository.Repositories;
|
|
|
|
|
|
|
|
|
|
namespace Persistence.Repository;
|
|
|
|
|
public static class DependencyInjection
|
|
|
|
|
{
|
|
|
|
|
public static void MapsterSetup()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
public static IServiceCollection AddInfrastructure(this IServiceCollection services, IConfiguration configuration)
|
|
|
|
|
{
|
|
|
|
|
MapsterSetup();
|
|
|
|
|
|
|
|
|
|
string connectionStringName = "DefaultConnection";
|
|
|
|
|
|
|
|
|
|
services.AddDbContext<PersistenceDbContext>(options =>
|
|
|
|
|
options.UseNpgsql(configuration.GetConnectionString(connectionStringName)));
|
|
|
|
|
|
2024-11-18 09:39:24 +05:00
|
|
|
|
services.AddScoped<DbContext>(provider => provider.GetRequiredService<PersistenceDbContext>());
|
2024-11-14 15:17:43 +05:00
|
|
|
|
|
|
|
|
|
services.AddTransient<ITimeSeriesDataRepository<DataSaubDto>, TimeSeriesDataRepository<DataSaub, DataSaubDto>>();
|
2024-11-18 09:39:24 +05:00
|
|
|
|
services.AddTransient<ISetpointRepository, SetpointRepository>();
|
2024-11-14 15:17:43 +05:00
|
|
|
|
|
|
|
|
|
return services;
|
|
|
|
|
}
|
|
|
|
|
}
|