25 lines
727 B
C#
25 lines
727 B
C#
using Microsoft.Extensions.DependencyInjection;
|
|
using Persistence.Database.Model;
|
|
using Persistence.Models;
|
|
using Persistence.Repositories;
|
|
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)
|
|
{
|
|
MapsterSetup();
|
|
|
|
services.AddTransient<ITimeSeriesDataRepository<DataSaubDto>, TimeSeriesDataCachedRepository<DataSaub, DataSaubDto>>();
|
|
services.AddTransient(typeof(IChangeLogRepository<,>), typeof(ChangeLogRepository<,>));
|
|
|
|
return services;
|
|
}
|
|
}
|