예제 #1
0
 public Cl_Cuestionario(int id, string nombre, char estado, DateTime fecha_inicio, int dias, int ponderacion_evaluacion, int ponderacion_autoevaluacion, DateTime fecha_termino, Cl_Perfil perfil)
 {
     this.id                         = id;
     this.nombre                     = nombre;
     this.estado                     = estado;
     this.fecha_inicio               = fecha_inicio;
     this.dias                       = dias;
     this.ponderacion_evaluacion     = ponderacion_evaluacion;
     this.ponderacion_autoevaluacion = ponderacion_autoevaluacion;
     this.fecha_termino              = fecha_termino;
     this.perfil                     = perfil;
 }
예제 #2
0
 public Cl_Competencia(int id, string nombre, string descripcion, string siglas, double nota_minima, double nota_maxima, double nota_esperada, char estado, Cl_Perfil perfil)
 {
     this.id            = id;
     this.nombre        = nombre;
     this.descripcion   = descripcion;
     this.siglas        = siglas;
     this.nota_minima   = nota_minima;
     this.nota_maxima   = nota_maxima;
     this.nota_esperada = nota_esperada;
     this.estado        = estado;
     this.perfil        = perfil;
 }
예제 #3
0
 public Cl_Funcionario(int run, string dv, string nombre, string apellido, char sexo, DateTime fechaNacimiento, string correo, int telefono, char estado, Cl_Jefe_Funcionario jefe_funcionario, Cl_Usuario usuario, Cl_Perfil perfil)
 {
     this.run              = run;
     this.dv               = dv;
     this.nombre           = nombre;
     this.apellido         = apellido;
     this.sexo             = sexo;
     this.fechaNacimiento  = fechaNacimiento;
     this.correo           = correo;
     this.telefono         = telefono;
     this.estado           = estado;
     this.jefe_funcionario = jefe_funcionario;
     this.usuario          = usuario;
     this.perfil           = perfil;
 }
예제 #4
0
 public Cl_JefePerfil(Cl_Funcionario funcionario, Cl_Perfil perfil)
 {
     this.funcionario = funcionario;
     this.perfil      = perfil;
 }
예제 #5
0
 public Cl_JefePerfil()
 {
     funcionario = new Cl_Funcionario();
     perfil      = new Cl_Perfil();
 }
예제 #6
0
 public Cl_Funcionario()
 {
     perfil           = new Cl_Perfil();
     usuario          = new Cl_Usuario();
     jefe_funcionario = new Cl_Jefe_Funcionario();
 }
예제 #7
0
 public Cl_Cuestionario()
 {
     perfil = new Cl_Perfil();
 }
예제 #8
0
 public Cl_Competencia()
 {
     perfil = new Cl_Perfil();
 }