Example #1
0
 public OhmValueCalculator(IBandColors colors)
 {
     this.colors = colors;
 }
Example #2
0
 public FourBandResistor(IBandColors colors) : base(colors)
 {
     //Create 4 color bands
     base.CreateBand(4);
     ResistanceValue = new ResistanceValue();
 }
 public ResistorService(IBandColors colors)
 {
     this.colors = colors;
 }
 public BandColorService(IBandColors bandColor)
 {
     this.bandColor = bandColor;
 }