Exemplo n.º 1
0
 private Repartiteur()
 {
     this.modEqu = new ModuleEquity(new List<Title>());
     this.modChange = new ModuleChange(new List<Title>());
     this.modConc = new ModuleConcentration(new List<Title>());
     this.modSpread = new ModuleSpread(new List<Title>());
     this.modProp = new ModuleProperty(new List<Title>());
     this.modInt = new ModuleInterest(new List<Title>());
 }
Exemplo n.º 2
0
 public void concentration(List<Title> portfolio)
 {
     this.modConc = new ModuleConcentration(portfolio);
 }
Exemplo n.º 3
0
 public void concentration(List<Title> portfolio, List<Title> immobilier)
 {
     List<Title> temp = new List<Title>();
     temp.AddRange(portfolio);
     temp.AddRange(immobilier);
     this.modConc = new ModuleConcentration(temp);
 }
Exemplo n.º 4
0
 public void concentration(List <Title> portfolio)
 {
     this.modConc = new ModuleConcentration(portfolio);
 }