예제 #1
0
 public PictureController(WebsiteDbContext context)
 {
     BedMatressDB = context;
 }
예제 #2
0
 public UserDao()
 {
     db = new WebsiteDbContext();
 }
예제 #3
0
 public CategoriesController(WebsiteDbContext dbContext) : base(dbContext)
 {
 }
예제 #4
0
 public MedicineController(WebsiteDbContext context)
 {
     _context = context;
 }
 public MediaContentsController(IMediaContentDataSource mediaContentDataSource, WebsiteDbContext websiteDbContext)
 {
     _mediaContentDataSource = mediaContentDataSource ?? throw new ArgumentNullException(nameof(mediaContentDataSource));
     _websiteDbContext       = websiteDbContext ?? throw new ArgumentNullException(nameof(websiteDbContext));
 }
예제 #6
0
 public CategoriesService(WebsiteDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
예제 #7
0
 public ProductsApi(WebsiteDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
예제 #8
0
 public QuestionsController(IQuestionDataSource questionDataSource, WebsiteDbContext websiteDbContext)
 {
     _questionDataSource = questionDataSource ?? throw new ArgumentNullException(nameof(questionDataSource));
     _websiteDbContext   = websiteDbContext ?? throw new ArgumentNullException(nameof(websiteDbContext));
 }
 public BookController(WebsiteDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
예제 #10
0
 public ManagerTopics()
 {
     db = new WebsiteDbContext();
 }
예제 #11
0
 public ProductsService(WebsiteDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
예제 #12
0
 public ManagerRole()
 {
     db = new WebsiteDbContext();
 }
예제 #13
0
 public HomeController(WebsiteDbContext dbContext) : base(dbContext)
 {
 }
예제 #14
0
 public NewsController(INewsDataSource newsDataSource, WebsiteDbContext websiteDbContext)
 {
     _newsDataSource   = newsDataSource ?? throw new ArgumentNullException(nameof(newsDataSource));
     _websiteDbContext = websiteDbContext ?? throw new ArgumentNullException(nameof(websiteDbContext));
 }
예제 #15
0
 public VictimController(WebsiteDbContext context)
 {
     _context = context;
 }
예제 #16
0
 public EntityRelationTestController(WebsiteDbContext dbContext)
 {
     _dbContext = dbContext;
 }
예제 #17
0
 public ManagerCourse()
 {
     db = new WebsiteDbContext();
 }
예제 #18
0
 public HomeController(WebsiteDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
예제 #19
0
 public TeachersController(ITeacherDataSource teacherDataSource, WebsiteDbContext websiteDbContext)
 {
     _teacherDataSource = teacherDataSource ?? throw new ArgumentNullException(nameof(teacherDataSource));
     _websiteDbContext  = websiteDbContext ?? throw new ArgumentNullException(nameof(websiteDbContext));
 }
예제 #20
0
 public MediaContentRepository(WebsiteDbContext websiteDbContext)
 {
     _websiteDbContext = websiteDbContext ?? throw new ArgumentNullException(nameof(websiteDbContext));
 }
예제 #21
0
 public HomeController(WebsiteDbContext db)
 {
     _db = db;
 }
예제 #22
0
 public TreeTestController(WebsiteDbContext dbContext)
 {
     _dbContext = dbContext;
 }
예제 #23
0
 public ProductsController(WebsiteDbContext dbContext) : base(dbContext)
 {
 }
예제 #24
0
 public BedController(WebsiteDbContext context)
 {
     BedMatressDB = context;
 }
예제 #25
0
 public AccountController(UserManager <WebsiteUser> userManager, SignInManager <WebsiteUser> signInManager, WebsiteDbContext db)
 {
     _userManager   = userManager;
     _signInManager = signInManager;
     _db            = db;
 }
예제 #26
0
 public CategoryCourseDao()
 {
     db = new WebsiteDbContext();
 }
예제 #27
0
 public DoctorController(WebsiteDbContext context)
 {
     _context = context;
 }
 public MediaContentDataSource(WebsiteDbContext websiteDbContext)
 {
     _websiteDbContext = websiteDbContext ?? throw new ArgumentNullException(nameof(websiteDbContext));
 }
예제 #29
0
 public SqlServerUseGeometryController(WebsiteDbContext dbContext)
 {
     _dbContext = dbContext;
 }