Exemplo n.º 1
0
 public AuthenController(TestingDbContext db)
 {
     _db = db;
 }
Exemplo n.º 2
0
 public TestCategoryController(TestingDbContext db)
 {
     _db = db;
 }
Exemplo n.º 3
0
 public SubjectController(TestingDbContext db)
 {
     _db = db;
 }
Exemplo n.º 4
0
 public UsersController(TestingDbContext db)
 {
     _db = db;
 }
Exemplo n.º 5
0
 public ExamsController(TestingDbContext db)
 {
     _db = db;
 }
Exemplo n.º 6
0
 public CustomerRepository(TestingDbContext db)
 {
     _db  = db;
     _set = _db.Customer;
 }
Exemplo n.º 7
0
 public SkillController(TestingDbContext db)
 {
     _db = db;
 }
Exemplo n.º 8
0
 public TaskController(TestingDbContext db)
 {
     _db = db;
 }
Exemplo n.º 9
0
 public MakeController(TestingDbContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
Exemplo n.º 10
0
 public BillRepository(TestingDbContext db)
 {
     _db  = db;
     _set = _db.Bill;
 }
Exemplo n.º 11
0
 public TopicController(TestingDbContext db)
 {
     _db = db;
 }
Exemplo n.º 12
0
 public HomeController(TestingDbContext db)
 {
     _db = db;
 }
 public ProductService(TestingDbContext context)
 {
     _context = context;
 }
Exemplo n.º 14
0
 public QuestionController(TestingDbContext db)
 {
     _db = db;
 }
 public TestSectionController(TestingDbContext db)
 {
     _db = db;
 }
Exemplo n.º 16
0
 public MultichoiceTaskAnswerController(TestingDbContext db)
 {
     _db = db;
 }
Exemplo n.º 17
0
 public ProductRepository(TestingDbContext db)
 {
     _db  = db;
     _set = _db.Product;
 }