public ConsultationRepository(AppointmentSchedulingDBContext ctx) : base(ctx)
 {
     _context = ctx;
 }
示例#2
0
 public DoctorRepository(AppointmentSchedulingDBContext ctx) : base(ctx)
 {
     _context = ctx;
 }
示例#3
0
 public Repository(AppointmentSchedulingDBContext context)
 {
     _context = context;
     DbSet    = context.Set <TEntity>();
 }