예제 #1
0
 public TrainerFeedback()
 {
     db        = new ProDbContext();
     _Inductee = new Inductee();
 }
예제 #2
0
 public ValidationController()
 {
     BatchRepo    = new Batch();
     InducteeRepo = new Inductee();
 }
예제 #3
0
파일: Batch.cs 프로젝트: mkiran1992/Proseed
 public Batch()
 {
     db        = new ProDbContext();
     _Inductee = new Inductee();
 }
예제 #4
0
 public HomeController()
 {
     _Batch    = new Batch();
     _Inductee = new Inductee();
 }
예제 #5
0
 public ReportController()
 {
     BatchRepo    = new Batch();
     ReportRepo   = new Report();
     IndcuteeRepo = new Inductee();
 }
예제 #6
0
 public FeedbackController()
 {
     FeedbackRepo = new Feedback();
     InducteeRepo = new Inductee();
     TrainerRepo  = new Trainer();
 }
예제 #7
0
 public InducteeController()
 {
     InducteeRepo = new Inductee();
     BatchRepo    = new Batch();
 }
 public TrainerFeedbackController()
 {
     TrainerFeedbackRepo = new TrainerFeedback();
     BatchRepo           = new Batch();
     _Inductee           = new Inductee();
 }