選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

UnitOfWork.cs 402B

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. }