Beispiel #1
0
 protected Modification(
     string name,
     IEnumerable <string> primaryLines,
     IEnumerable <string> secondaryLines,
     Color primaryColor,
     Color secondaryColor)
 {
     Name      = name;
     Primary   = new PrimarySection(this, primaryLines, primaryColor);
     Secondary = new SecondarySection(this, secondaryLines, secondaryColor);
 }
Beispiel #2
0
 protected Modification(
     string name,
     IEnumerable<string> primaryLines,
     IEnumerable<string> secondaryLines,
     Color primaryColor,
     Color secondaryColor)
 {
     Name = name;
     Primary = new PrimarySection(this, primaryLines, primaryColor);
     Secondary = new SecondarySection(this, secondaryLines, secondaryColor);
 }