Beispiel #1
0
 public TicketingData(StudentContext ctx)
 {
     context = ctx;
 }
 public TicketingUnitOfWork(StudentContext ctx) => context = ctx;
Beispiel #3
0
 public Repository(StudentContext ctx)
 {
     context = ctx;
     dbset   = context.Set <T>();
 }