public static void AddContext(this IServiceCollection services) { var contextRepository = new ContextRepository(); var context = contextRepository.Load(); services.AddSingleton(c => context); }