Ejemplo n.º 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;
 }
Ejemplo n.º 2
0
 public ViewCalculationHeaders(EvolveContext context)
 {
     this._context = context;
 }
 public CalculationCommandHandler(IFileParser parser, EvolveContext context)
 {
     this.parser   = parser;
     this._context = context;
 }
Ejemplo n.º 4
0
 public ViewCalculationResults(EvolveContext context)
 {
     this._context = context;
 }