Пример #1
0
 /// <summary>
 /// Repository Context Constructor
 /// </summary>
 /// <param name="context"></param>
 public RepositoryBase(ProjectCourseContext context)
 {
     _context = context;
 }
 public SellerService(ProjectCourseContext context)
 {
     _context = context;
 }
Пример #3
0
 /// <summary>
 /// Student Context
 /// </summary>
 /// <param name="context"></param>
 public StudentRepository(ProjectCourseContext context) : base(context)
 {
     _context = context;
 }
Пример #4
0
 public DepartmentsController(ProjectCourseContext context)
 {
     _context = context;
 }
 public DepartmentService(ProjectCourseContext context)
 {
     _context = context;
 }
Пример #6
0
 /// <summary>
 /// Teacher Context
 /// </summary>
 /// <param name="context"></param>
 public TeacherRepository(ProjectCourseContext context) : base(context)
 {
     _context = context;
 }