Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718
  1. using BlackRock.Reporting.API.Core;
  2. namespace BlackRock.Reporting.API.Persistence
  3. {
  4. public class UnitOfWork : IUnitOfWork
  5. {
  6. private readonly BRDbContext context;
  7. public UnitOfWork(BRDbContext context)
  8. {
  9. this.context = context;
  10. }
  11. public async Task SaveChangesAsync()
  12. {
  13. await context.SaveChangesAsync();
  14. }
  15. }
  16. }