File tree 1 file changed +7
-3
lines changed
src/AzureOpenAIProxy.ApiApp/Repositories
1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 1
- using AzureOpenAIProxy . ApiApp . Models ;
1
+ using AzureOpenAIProxy . ApiApp . Configurations ;
2
+ using AzureOpenAIProxy . ApiApp . Extensions ;
3
+ using AzureOpenAIProxy . ApiApp . Models ;
2
4
3
5
namespace AzureOpenAIProxy . ApiApp . Repositories ;
4
6
@@ -39,8 +41,10 @@ public interface IAdminEventRepository
39
41
/// <summary>
40
42
/// This represents the repository entity for the admin event.
41
43
/// </summary>
42
- public class AdminEventRepository : IAdminEventRepository
44
+ public class AdminEventRepository ( IServiceCollection sc ) : IAdminEventRepository
43
45
{
46
+ private readonly StorageSettings _storageSettings = sc . GetStorageSettings ( ) ;
47
+
44
48
/// <inheritdoc />
45
49
public async Task < AdminEventDetails > CreateEvent ( AdminEventDetails eventDetails )
46
50
{
@@ -78,7 +82,7 @@ public static class AdminEventRepositoryExtensions
78
82
/// <returns>Returns <see cref="IServiceCollection"/> instance.</returns>
79
83
public static IServiceCollection AddAdminEventRepository ( this IServiceCollection services )
80
84
{
81
- services . AddScoped < IAdminEventRepository , AdminEventRepository > ( ) ;
85
+ services . AddScoped < IAdminEventRepository > ( p => new AdminEventRepository ( services ) ) ;
82
86
83
87
return services ;
84
88
}
You can’t perform that action at this time.
0 commit comments