Exemplo n.º 1
0
 public Turno(string cliente, Etipos tipos) : this()
 {
     this.ticke   = nroTicket;
     this.cliente = ValidarDatos(cliente);
     this.tipo    = tipos;
     this.precio  = (int)tipos;
 }
Exemplo n.º 2
0
 public Turno(string cliente, Etipos tipos, string domicilio) : this(cliente, tipos)
 {
     this.domicilio = ValidarDatos(domicilio);
 }