Example #1
0
 /// <summary>
 /// Alternate constructor 2 for application purposes.
 /// </summary>
 public TeaProfile(TeaColorEnum color, string name, decimal caffeineMilligrams)
 {
     TeaColor           = color;
     Name               = name;
     CaffeineMilligrams = caffeineMilligrams;
 }
Example #2
0
 /// <summary>
 /// Alternate constructor 1 for application purposes.
 /// </summary>
 public TeaProfile(TeaColorEnum color, string name)
 {
     TeaColor = color;
     Name     = name;
 }