Exemplo n.º 1
0
 public ActivityRepository(AppointmentSystemContext dbContext)
     : base(dbContext)
 {
 }
Exemplo n.º 2
0
 public AppointmentRepository(AppointmentSystemContext dbContext)
     : base(dbContext)
 {
     Dbcontext = dbContext;
 }
 public BaseRepository(AppointmentSystemContext dbContext)
 {
     Context = dbContext;
     DbSet   = Context.Set <T>();
 }
Exemplo n.º 4
0
 public UserRepository(AppointmentSystemContext dbContext)
     : base(dbContext)
 {
 }