示例#1
0
 public GroupRepository(EintechContext context) : base(context)
 {
 }
示例#2
0
 public BaseRepository(EintechContext context)
 {
     _context = context ?? throw new ArgumentNullException(nameof(context));
 }
示例#3
0
 public PersonRepository(EintechContext context) : base(context)
 {
 }