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