Skip to content

Commit 5fc33a6

Browse files
committed
update AdminEventRepository
Related to: aliencube#319
1 parent f77f2b5 commit 5fc33a6

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

src/AzureOpenAIProxy.ApiApp/Repositories/AdminEventRepository.cs

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
using AzureOpenAIProxy.ApiApp.Models;
1+
using AzureOpenAIProxy.ApiApp.Configurations;
2+
using AzureOpenAIProxy.ApiApp.Extensions;
3+
using AzureOpenAIProxy.ApiApp.Models;
24

35
namespace AzureOpenAIProxy.ApiApp.Repositories;
46

@@ -39,8 +41,10 @@ public interface IAdminEventRepository
3941
/// <summary>
4042
/// This represents the repository entity for the admin event.
4143
/// </summary>
42-
public class AdminEventRepository : IAdminEventRepository
44+
public class AdminEventRepository(IServiceCollection sc) : IAdminEventRepository
4345
{
46+
private readonly StorageSettings _storageSettings = sc.GetStorageSettings();
47+
4448
/// <inheritdoc />
4549
public async Task<AdminEventDetails> CreateEvent(AdminEventDetails eventDetails)
4650
{
@@ -78,7 +82,7 @@ public static class AdminEventRepositoryExtensions
7882
/// <returns>Returns <see cref="IServiceCollection"/> instance.</returns>
7983
public static IServiceCollection AddAdminEventRepository(this IServiceCollection services)
8084
{
81-
services.AddScoped<IAdminEventRepository, AdminEventRepository>();
85+
services.AddScoped<IAdminEventRepository>(p => new AdminEventRepository(services));
8286

8387
return services;
8488
}

0 commit comments

Comments
 (0)