Exemplo n.º 1
0
 public void Add(TitleHue hue)
 {
     if (hue != null)
     {
         Hues.Add(hue);
     }
 }
Exemplo n.º 2
0
 public void AddHue(Hue hue)
 {
     if (hue == null)
     {
         throw new ArgumentNullException(nameof(hue));
     }
     Hues.Add(hue);
 }