コード例 #1
0
 public HomeController(IMessageSession messageSession, IHostingEnvironment hostingEnvironment, EvolveContext context,
                       IViewCalculationHeaders viewCalculationHeaders, IViewCalculationResults viewCalculationResults)
 {
     this.messageSession          = messageSession;
     this.hostingEnvironment      = hostingEnvironment;
     this.context                 = context;
     this._viewCalculationHeaders = viewCalculationHeaders;
     this._viewCalculationResults = viewCalculationResults;
 }
コード例 #2
0
 public ViewCalculationHeaders(EvolveContext context)
 {
     this._context = context;
 }
コード例 #3
0
 public CalculationCommandHandler(IFileParser parser, EvolveContext context)
 {
     this.parser   = parser;
     this._context = context;
 }
コード例 #4
0
 public ViewCalculationResults(EvolveContext context)
 {
     this._context = context;
 }