Esempio 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>());
 }
Esempio n. 2
0
 public void change(List<Title> portfolio)
 {
     List<Title> temp = new List<Title>();
     foreach (Title t in portfolio)
     {
         if (inChangeModule(t))
             temp.Add(t);
     }
     this.modChange = new ModuleChange(temp);
 }
Esempio n. 3
0
        public void change(List <Title> portfolio)
        {
            List <Title> temp = new List <Title>();

            foreach (Title t in portfolio)
            {
                if (inChangeModule(t))
                {
                    temp.Add(t);
                }
            }
            this.modChange = new ModuleChange(temp);
        }