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