コード例 #1
0
ファイル: Repartiteur.cs プロジェクト: RomainDAV/TigerAppWPF
 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>());
 }
コード例 #2
0
        public void spread(List <Title> portfolio)
        {
            List <Title> temp = new List <Title>();

            foreach (Title t in portfolio)
            {
                if (inSpreadModule(t))
                {
                    temp.Add(t);
                }
            }
            this.modSpread = new ModuleSpread(temp);
        }
コード例 #3
0
ファイル: Repartiteur.cs プロジェクト: TigerSCR/TigerAppWPF
 public void spread(List<Title> portfolio)
 {
     List<Title> temp = new List<Title>();
     foreach (Title t in portfolio)
     {
         if (inSpreadModule(t))
             temp.Add(t);
     }
     this.modSpread=new ModuleSpread(temp);
 }