File tree 1 file changed +4
-4
lines changed
src/AzureOpenAIProxy.ApiApp/Repositories
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -42,25 +42,25 @@ public interface IAdminEventRepository
42
42
public class AdminEventRepository : IAdminEventRepository
43
43
{
44
44
/// <inheritdoc />
45
- public Task < AdminEventDetails > CreateEvent ( AdminEventDetails eventDetails )
45
+ public async Task < AdminEventDetails > CreateEvent ( AdminEventDetails eventDetails )
46
46
{
47
47
throw new NotImplementedException ( ) ;
48
48
}
49
49
50
50
/// <inheritdoc />
51
- public Task < List < AdminEventDetails > > GetEvents ( )
51
+ public async Task < List < AdminEventDetails > > GetEvents ( )
52
52
{
53
53
throw new NotImplementedException ( ) ;
54
54
}
55
55
56
56
/// <inheritdoc />
57
- public Task < AdminEventDetails > GetEvent ( Guid eventId )
57
+ public async Task < AdminEventDetails > GetEvent ( Guid eventId )
58
58
{
59
59
throw new NotImplementedException ( ) ;
60
60
}
61
61
62
62
/// <inheritdoc />
63
- public Task < AdminEventDetails > UpdateEvent ( Guid eventId , AdminEventDetails eventDetails )
63
+ public async Task < AdminEventDetails > UpdateEvent ( Guid eventId , AdminEventDetails eventDetails )
64
64
{
65
65
throw new NotImplementedException ( ) ;
66
66
}
You can’t perform that action at this time.
0 commit comments