using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using MongoDB.Bson.Serialization; using ExpenseTracker.Application.Common.Interfaces.Repositories; using ExpenseTracker.Domain.Entities; using ExpenseTracker.Persistence.MongoDb; using ExpenseTracker.Persistence.PostgreSQL; using ExpenseTracker.Persistence.MongoDb.Repositories; using ExpenseTracker.Persistence.Serializers; using ExpenseTracker.Persistence.PostgreSQL.Repositories; using ExpenseTracker.Application.Common.Interfaces; namespace ExpenseTracker.Persistence; public static class DependencyInjection { public static IServiceCollection AddPersistence(this IServiceCollection services, IConfiguration configuration) { var databaseName = configuration["Database:Type"]; if (databaseName.Equals("mongodb")) { services.AddMongoDb(); return services; } if (databaseName.Equals("postgresql")) { services.AddPostgreSQL(configuration); return services; } // TODO: Refactor to use database type enum throw new ArgumentException( $"Unsupported database type specified in configuration. " + $"Supported types: mongodb postgresql"); } private static IServiceCollection AddMongoDb(this IServiceCollection services) { BsonSerializer.RegisterSerializer(new AccountSerializer()); BsonSerializer.RegisterSerializer(new TransactionSerializer()); services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); return services; } private static IServiceCollection AddPostgreSQL(this IServiceCollection services, IConfiguration configuration) { services.AddDbContext(options => { options.UseNpgsql(configuration["Database:ConnectionString"]); }); services.AddScoped(); // services.AddScoped(); // services.AddScoped(); return services; } }