コード例 #1
0
 public AnnualPerformanceController(PJSrenovationsWebContext contest)
 {
     this._context = contest;
 }
コード例 #2
0
 public CreateModel(IWebHostEnvironment environment, PJSrenovationsWebContext context)
 {
     this._context         = context;
     this._hostEnvironment = environment;
 }
コード例 #3
0
 public IndexModel(PJSrenovationsWebContext context)
 {
     _context = context;
 }
コード例 #4
0
 public DetailsModel(PJSrenovationsWebContext context)
 {
     _context = context;
 }
コード例 #5
0
 public CreateModel(PJSrenovationsWebContext context)
 {
     _context = context;
 }
コード例 #6
0
 public CompletedProjectsModel(PJSrenovationsWebContext context)
 {
     this._context = context;
 }
コード例 #7
0
 public DashboardController(PJSrenovationsWebContext context)
 {
     this._context = context;
 }
コード例 #8
0
 public DeleteModel(PJSrenovationsWebContext context)
 {
     _context = context;
 }
コード例 #9
0
 public IndexModel(ILogger <IndexModel> logger, PJSrenovationsWebContext context)
 {
     _logger  = logger;
     _context = context;
 }