Example #1
0
 public PmtctRepository(PmtctDbContext dbContext)
 {
     _context = dbContext ?? throw new ArgumentNullException(nameof(dbContext));
 }
Example #2
0
 public PmtctUnitOfWork(PmtctDbContext context)
 {
     _context = context ?? throw new ArgumentNullException(nameof(context));
 }