Example #1
0
 public ScenarioLifetimeCollateral(ECL_Scenario scenario, Guid eclId, EclType eclType)
 {
     _scenario            = scenario;
     this._eclId          = eclId;
     this._eclType        = eclType;
     _lifetimeEad         = new LifetimeEadWorkings(eclId, this._eclType);
     _irFactorWorkings    = new IrFactorWorkings(eclId, this._eclType);
     _updatedFSVsWorkings = new UpdatedFSVsWorkings(eclId, this._eclType);
     _scenarioLifetimeLGD = new ScenarioLifetimeLGD(eclId, this._eclType);
 }
Example #2
0
 public SicrWorkings(Guid eclId, EclType eclType)
 {
     this.eclId           = eclId;
     this._eclType        = eclType;
     _lifetimeEadWorkings = new LifetimeEadWorkings(eclId, this._eclType);
     _sicrInputs          = new SicrInputWorkings(eclId, this._eclType);
     _pdMapping           = new PDMapping(eclId, this._eclType);
     scenarioLifetimeLGD  = new ScenarioLifetimeLGD(eclId, this._eclType);
     _processECL_LGD      = new ProcessECL_LGD(eclId, eclType);
 }
Example #3
0
 public ScenarioLifetimeLGD(Guid eclId, EclType eclType, ECL_Scenario _scenario)
 {
     this._eclId = eclId;
     // this._scenario = scenario;
     this._eclType               = eclType;
     _sicrInputs                 = new SicrInputWorkings(this._eclId, _eclType);
     _sicrWorkings               = new SicrWorkings(this._eclId, _eclType);
     _lifetimeEadWorkings        = new LifetimeEadWorkings(this._eclId, _eclType);
     _scenarioLifetimeCollateral = new ScenarioLifetimeCollateral(ECL_Scenario.Best, this._eclId, _eclType);
     _pdMapping   = new PDMapping(this._eclId, _eclType);
     _creditIndex = new CreditIndex(this._eclId, _eclType);
 }
        public ScenarioEclWorkings(Guid eclId, ECL_Scenario scenario, EclType eclType)
        {
            this._eclId   = eclId;
            _scenario     = scenario;
            this._eclType = eclType;

            _lifetimeEad = new LifetimeEadWorkings(eclId, this._eclType);
            //_lifetimeLgd = new ScenarioLifetimeLGD(eclId,this._eclType);
            _irFactorWorkings = new IrFactorWorkings(eclId, this._eclType);
            _sicrWorkings     = new SicrWorkings(eclId, this._eclType);

            _lifetimeEadWorkings = new LifetimeEadWorkings(eclId, this._eclType);
        }