コード例 #1
0
 public JobsViewModel(JobRecruitmentContext context)
 {
     _context = context;
 }
コード例 #2
0
 public RequriementFiltersViewModel(JobRecruitmentContext context)
 {
     this.context = context;
 }
コード例 #3
0
 public CompanysViewModel(JobRecruitmentContext context)
 {
     _context = context ?? throw new ArgumentNullException(nameof(context));
 }
コード例 #4
0
 public JobController(JobRecruitmentContext context)
 {
     Context = context;
 }
コード例 #5
0
 public RequriementController(JobRecruitmentContext context)
 {
     Context = context;
 }
コード例 #6
0
 public WeatherForecastController(ILogger <WeatherForecastController> logger, JobRecruitmentContext context)
 {
     _logger = logger;
     Context = context;
 }
コード例 #7
0
 public CompanyController(JobRecruitmentContext context)
 {
     Context = context;
 }