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