| 123456789101112131415161718 |
- using BlackRock.Reporting.API.Core;
-
- namespace BlackRock.Reporting.API.Persistence
- {
- public class UnitOfWork : IUnitOfWork
- {
- private readonly BRDbContext context;
- public UnitOfWork(BRDbContext context)
- {
- this.context = context;
- }
-
- public async Task SaveChangesAsync()
- {
- await context.SaveChangesAsync();
- }
- }
- }
|