arrange tests

This commit is contained in:
2025-09-11 18:53:39 +02:00
parent 8743325067
commit db8c41368d
7 changed files with 38 additions and 26 deletions

View File

@@ -16,6 +16,9 @@ public static class DependencyInjection
options.Invoke(cfg);
cfg.RegisterAllServices(services);
// register db repository
services.AddSingleton<IRepository, DbRepository>();
// register db repository factory
services.AddSingleton<IRepositoryFactory, DbRepositoryFactory>();