public string GenerarPlantillaContrato(int idPlantilla, int[] empleados) { Plantillas p = new Plantillas(); RHEntities ctx = new RHEntities(); var tipo = ctx.Plantilla.Where(x => x.Id == idPlantilla).Select(x => x.Tipo).FirstOrDefault(); if (tipo == 1) { return(p.FormarPlantilla(idPlantilla, (int)TipoPlantilla.Contrato, empleados)); } else if (tipo == 7) { return(p.FormarPlantilla(idPlantilla, (int)TipoPlantilla.MovimientoPersonal, empleados)); } else if (tipo == 8) { return(p.FormarPlantilla(idPlantilla, (int)TipoPlantilla.CartaAntiguedad, empleados)); } else if (tipo == 9) { return(p.FormarPlantilla(idPlantilla, (int)TipoPlantilla.GastosMedicosMenores, empleados)); } else if (tipo == 10) { return(p.FormarPlantilla(idPlantilla, (int)TipoPlantilla.Sindicato, empleados)); } else { return("false"); } }
public string GenerarPlantillaVacaciones(int idPlantilla, int[] vacaciones) { Plantillas p = new Plantillas(); return(p.FormarPlantilla(idPlantilla, (int)TipoPlantilla.Vacaciones, vacaciones)); }
public string GenerarPlantillaBaja(int IdPlantilla, int[] empleados) { Plantillas p = new Plantillas(); return(p.FormarPlantilla(IdPlantilla, (int)TipoPlantilla.Baja, empleados)); }
public string GenerarPlantillaContrato(int idPlantilla, int[] empleados) { Plantillas p = new Plantillas(); return(p.FormarPlantilla(idPlantilla, (int)TipoPlantilla.Permisos, empleados)); }