Example #1
0
 public DiemRenLuyenRepository(QLSVDbContext context) : base(context)
 {
 }
Example #2
0
 public SinhVienRepository(QLSVDbContext context) : base(context)
 {
     _context = context;
 }
Example #3
0
 public GiaoVienRepository(QLSVDbContext context) : base(context)
 {
 }
Example #4
0
 public StudentService(QLSVDbContext qLSVDbContext, HttpClient httpClient)
 {
     _qLSVDbContext = qLSVDbContext;
     _httpClient    = httpClient;
 }
Example #5
0
 public TaiKhoanRepository(QLSVDbContext context) : base(context)
 {
     _context = context;
 }
Example #6
0
 public LopHocPhanRepository(QLSVDbContext context) : base(context)
 {
     _context = context;
 }
Example #7
0
 public UnitOfWork()
 {
     _dataContext  = new QLSVDbContext();
     _repositories = new Dictionary <string, object>();
 }
Example #8
0
 public StudentController(QLSVDbContext qLSVDbContext)
 {
     _qLSVDbContext = qLSVDbContext;
 }
Example #9
0
 public ClassService(QLSVDbContext qLSVDbContext)
 {
     _qLSVDbContext = qLSVDbContext;
 }
Example #10
0
 public SchoolService(QLSVDbContext qLSVDbContext)
 {
     _qLSVDbContext = qLSVDbContext;
 }
Example #11
0
 public KhoaRepository(QLSVDbContext context) : base(context)
 {
 }
Example #12
0
 public BaseRepository(QLSVDbContext context)
 {
     _context = context;
     _dbSet   = context.Set <TEntity>();
 }