43 lines
1.1 KiB
C#
43 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace compabetov2.database.modelos
|
|
{
|
|
public class Cliente
|
|
{
|
|
public int idCliente;
|
|
public string nombres;
|
|
public string apellidos;
|
|
public string calle;
|
|
public string colonia;
|
|
public string cp;
|
|
public string no_ext;
|
|
public string no_int;
|
|
public string referencia;
|
|
public string telefono;
|
|
public string telefono_extra;
|
|
|
|
public Cliente(int idCliente = -1, string nombres = "", string apellidos = "", string calle = "",
|
|
string colonia = "", string cp = "", string no_ext = "",string no_int = "", string referencia = "", string telefono = "", string telefono_extra = "")
|
|
{
|
|
this.idCliente = idCliente;
|
|
this.nombres = nombres;
|
|
this.apellidos = apellidos;
|
|
this.calle = calle;
|
|
this.colonia = colonia;
|
|
this.cp = cp;
|
|
this.no_ext = no_ext;
|
|
this.no_int = no_int;
|
|
this.referencia = referencia;
|
|
this.telefono = telefono;
|
|
this.telefono_extra = telefono_extra;
|
|
|
|
|
|
}
|
|
}
|
|
}
|
|
|