Example #1
0
 public Empleado(int ID, TipoEmpleado RTipoEmpleado, String Nombre, String ApPaterno, String ApMaterno, String NroDocumento, bool Estado, String Imagen, String Usuario, String Clave)
 {
     this.ID            = ID;
     this.RTipoEmpleado = RTipoEmpleado;
     this.Nombre        = Nombre;
     this.ApPaterno     = ApPaterno;
     this.apMaterno     = ApMaterno;
     this.NroDocumento  = NroDocumento;
     this.Estado        = Estado;
     this.Imagen        = Imagen;
     this.Usuario       = Usuario;
     this.Clave         = Clave;
 }
Example #2
0
 public Empleado(int idEmpleado, TipoEmpleado idTipoEmpleado, string nombres, string apPaterno, string apMaterno, string nroDocumento, bool estado, string imagen, string usuario, string clave)
 {
     this.idEmpleado     = idEmpleado;
     this.idTipoEmpleado = idTipoEmpleado;
     this.nombres        = nombres;
     this.apPaterno      = apPaterno;
     this.apMaterno      = apMaterno;
     this.nroDocumento   = nroDocumento;
     this.estado         = estado;
     this.imagen         = imagen;
     this.usuario        = usuario;
     this.clave          = clave;
 }