예제 #1
0
 public CommentRepository(KoodleDbContext context) : base(context)
 {
     if (context == null)
     {
         throw new ArgumentNullException(nameof(context));
     }
 }
예제 #2
0
 public UnitOfWork(KoodleDbContext context)
 {
     _context = context;
 }