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