示例#1
0
 public Report(ProDbContext context)
 {
     this.db = context;
 }
示例#2
0
 public Inductee()
 {
     db = new ProDbContext();
 }
示例#3
0
 public Batch()
 {
     db        = new ProDbContext();
     _Inductee = new Inductee();
 }
示例#4
0
 public TrainerFeedback()
 {
     db        = new ProDbContext();
     _Inductee = new Inductee();
 }
示例#5
0
 public TrainerTraineeUserMapping()
 {
     db = new ProDbContext();
 }
 public ArtistRepository(ProDbContext context)
     : base(context)
 {
 }
 public MusicRepository(ProDbContext context) : base(context)
 {
 }
 public EmployeeRepository(ProDbContext context) : base(context)
 {
 }
示例#9
0
 public NotificationRepository(ProDbContext context) : base(context)
 {
 }
示例#10
0
 public Feedback()
 {
     db = new ProDbContext();
 }
示例#11
0
 public Trainer()
 {
     db = new ProDbContext();
 }