Example #1
0
 public CourseController(ChamaContext chamaContext,
                         ICourseService courseService,
                         IStudentService studentService)
 {
     _chamaContext   = chamaContext;
     _courseService  = courseService;
     _studentService = studentService;
 }
 public CoursesRepository(ChamaContext context)
 {
     _context = context;
 }
Example #3
0
 public StudentRepository(ChamaContext context)
     : base(context)
 {
 }
Example #4
0
 public CourseController(ChamaContext chamaContext, ICourseService courseService)
 {
     _chamaContext  = chamaContext;
     _courseService = courseService;
 }
Example #5
0
 public CourseService(ChamaContext chamaContext) : base(chamaContext)
 {
     _chamaContext = chamaContext;
 }
Example #6
0
 public CourseRepository(ChamaContext context) : base(context)
 {
 }
Example #7
0
 public LecturerController(ChamaContext chamaContext, ILecturerService lecturerService)
 {
     _chamaContext    = chamaContext;
     _lecturerService = lecturerService;
 }
Example #8
0
 public UnitOfWork(ChamaContext context)
 {
     _context = context;
 }
Example #9
0
 public StudentController(ChamaContext chamaContext, IStudentService studentService)
 {
     _chamaContext   = chamaContext;
     _studentService = studentService;
 }
Example #10
0
 public LecturerService(ChamaContext chamaContext) : base(chamaContext)
 {
 }
Example #11
0
 public CourseDetailProvider(ChamaContext dbContext, IMapper mapper)
 {
     _dbContext = dbContext;
     _mapper    = mapper;
 }
Example #12
0
 public Repository(ChamaContext context)
 {
     Db    = context;
     DbSet = Db.Set <TEntity>();
 }
Example #13
0
 public StudentService(ChamaContext chamaContext) : base(chamaContext)
 {
 }
Example #14
0
 public ServiceBase(ChamaContext chamaContext)
 {
     _chamaContext = chamaContext;
 }
Example #15
0
 public UsersRepositoriy(ChamaContext context)
 {
     _context = context;
 }