Exemple #1
0
 /// <summary>
 /// Injecting the DbContext class in the Service
 /// </summary>
 /// <param name="ctx"></param>
 public StudentService(ExStudentDbContext ctx)
 {
     this.ctx = ctx;
 }
Exemple #2
0
 /// <summary>
 /// Injecting the DbContext class in the Service
 /// </summary>
 /// <param name="ctx"></param>
 public UniversityService(ExStudentDbContext ctx)
 {
     this.ctx = ctx;
 }