public KraScoresController(IKraInputScoresService InputScoreService, IKraScoreCalculator ScoreCalculator, IExcelReportGenerator ReportGenerator, IAccountsService Account)
 {
     this.InputScoreService = InputScoreService;
     this.ScoreCalculator   = ScoreCalculator;
     this.ReportGenerator   = ReportGenerator;
     this.Account           = Account;
 }
Пример #2
0
 public KraScoreCalculator(IAccountParameterService AccountParams, IKraInputScoresService InputScores, IParameterBoundsService ParamBounds, IAccountTeamSizeService Teamsize)
 {
     this.AccountParams = AccountParams;
     this.InputScores   = InputScores;
     this.ParamBounds   = ParamBounds;
     this.Teamsize      = Teamsize;
 }
Пример #3
0
 public ExcelReportGenerator(IKraScoreCalculator Krascores, IAccountParameterService AccountParams, IKraInputScoresService InputScores)
 {
     this.Krascores     = Krascores;
     this.AccountParams = AccountParams;
     this.InputScores   = InputScores;
 }
Пример #4
0
 public AccountParamterService(IAccountParameteresDal AccountParameterDal, IKraParameterService ParametersService, IKraInputScoresService InputScoreService)
 {
     this.AccountParameterDal = AccountParameterDal;
     this.ParametersService   = ParametersService;
     this.InputScoreService   = InputScoreService;
 }