Example #1
0
 public Tinta(ConsoleColor color, EtipoTinta tipo) : this(color)
 {
     this._Tipo = tipo;
 }
Example #2
0
 public Tinta()
 {
     this._Color = ConsoleColor.Blue;
     this._Tipo  = EtipoTinta.Comun;
 }
 public Tinta()
 {
     this.color     = ConsoleColor.Red;
     this.tipoTinta = EtipoTinta.Comun;
 }
Example #4
0
 public Tinta(ConsoleColor color, EtipoTinta tipo)
 {
     this.color = color;
     this.tipo  = tipo;
 }
Example #5
0
 public Tinta(EtipoTinta tipo) : this()
 {
     this.tipo = tipo;
 }
Example #6
0
 public Tinta()
 {
     this.color = ConsoleColor.Blue;
     this.tipo  = EtipoTinta.ConBrillo;
 }