43 lines
1.4 KiB
C#
43 lines
1.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace compabetov2.database.modelos
|
|
{
|
|
internal class Empleado
|
|
{
|
|
public int idempleado;
|
|
public string nombre;
|
|
public string apellidos;
|
|
public string calle;
|
|
public string fecha_contratacion;
|
|
public string estado;
|
|
public string colonia;
|
|
public string cp;
|
|
public string no_ext;
|
|
public string no_int;
|
|
public string referencia;
|
|
public string fecha_nac;
|
|
public string telefono;
|
|
|
|
public Empleado(int idempeado = -1, string nombre ="", string apellidos = "", string calle = "", string fecha_contratacion = "", string estado = "", string colonia = "", string cp = "", string no_ext = "", string no_int = "", string referencia = "", string fecha_nac = "", string telefono ="")
|
|
{
|
|
this.idempleado = idempeado;
|
|
this.nombre = nombre;
|
|
this.apellidos = apellidos;
|
|
this.calle = calle;
|
|
this.fecha_contratacion=fecha_contratacion;
|
|
this.estado = estado;
|
|
this.colonia = colonia;
|
|
this.cp = cp;
|
|
this.no_ext = no_ext;
|
|
this.no_int = no_int;
|
|
this.referencia = referencia;
|
|
this.fecha_nac=fecha_nac;
|
|
this.telefono = telefono;
|
|
}
|
|
}
|
|
}
|