示例#1
0
文件: TPago.cs 项目: noedelarosa/SIC
 public TPago(double montobruto, DateTime fecha, Empresa.RHH.testadolaboral estado)
 {
     this.Id = 0;
     this.MontoBruto = montobruto;
     this.Fecha = fecha;
     this.Estado = estado;
 }
示例#2
0
文件: TPago.cs 项目: noedelarosa/SIC
 public TPago(int id)
 {
     this.Id = id;
     this.MontoBruto = 0;
     this.Fecha = DateTime.MinValue;
     this.Estado = new RHH.testadolaboral();
 }
示例#3
0
文件: TPago.cs 项目: noedelarosa/SIC
        public TPago(int id, string cedula, double montobruto, DateTime fecha, Empresa.RHH.testadolaboral estado)
        {
            this.Id = id;
            this.MontoBruto = montobruto;
            this.Fecha = fecha;
            this.Estado = estado;

            this.Docente = new tdocente();
            this.Docente.Cedula = cedula;
        }
 private void Com_PJ_SelectionChanged(object sender, SelectionChangedEventArgs e){
     _tipo = (Empresa.RHH.testadolaboral)Com_PJ.SelectedItem;
 }
示例#5
0
文件: TPago.cs 项目: noedelarosa/SIC
 public TPago(tdocente docente, double montobruto, DateTime fecha)
 {
     this.Id = 0;
     this.MontoBruto = montobruto;
     this.Fecha = fecha;
     this.Estado = new RHH.testadolaboral();
     this.Docente = docente;
 }
示例#6
0
文件: TPago.cs 项目: noedelarosa/SIC
 public TPago(int id, tdocente docente, double montobruto, DateTime fecha, Empresa.RHH.testadolaboral estado)
 {
     this.Id = id;
     this.MontoBruto = montobruto;
     this.Fecha = fecha;
     this.Estado = estado;
     this.Docente = docente;
 }