Exemple #1
0
 public Cliente(int id, string nombre, int telefono, string direccion, Servicios servicios)
 {
     Id         = id;
     Nombre     = nombre;
     Telefono   = telefono;
     Direccion  = direccion;
     Servicios  = servicios;
     ServicioId = servicios.Id;
 }
Exemple #2
0
 public Cliente()
 {
     Servicios  = new Servicios(1, "Amalgama Clase I", 60);
     ServicioId = Servicios.Id;
 }