Пример #1
0
 public CommentRepository(PartyAgileDbContext context)
 {
     _context = context ?? throw new ArgumentNullException(nameof(context));
 }
 public VendorRepository(PartyAgileDbContext context)
 {
     _context = context ?? throw new ArgumentException(nameof(context));
 }
 public VendorEventRepository(PartyAgileDbContext context)
 {
     _context = context;
 }