public Boolean InsertarHistorialRequerimiento(historial_sugerencia historialRequerimiento)
 {
     try
     {
         using (SagproEntities contexto = new SagproEntities())
         {
             contexto.historial_sugerencia.Add(historialRequerimiento);
             contexto.SaveChanges();
             return true;
         }
     }
     catch (Exception ex)
     {
         Debug.WriteLine(ex.ToString());
     }
     return false;
 }
        public HistorialRequerimientoDTO HistorialRequerimientoEntityToDTO(historial_sugerencia historialRequerimientoEntity)
        {
            if (historialRequerimientoEntity != null)
            {
                HistorialRequerimientoDTO historialRequerimientoDTO = new HistorialRequerimientoDTO();

                historialRequerimientoDTO.id = historialRequerimientoEntity.ID;
                historialRequerimientoDTO.sugerenciaId = historialRequerimientoEntity.sugerencia_ID;
                historialRequerimientoDTO.fecha = historialRequerimientoEntity.fecha;
                historialRequerimientoDTO.porcentaje = historialRequerimientoEntity.porcentaje;
                historialRequerimientoDTO.usuarioId = historialRequerimientoEntity.usuario_ID;
                historialRequerimientoDTO.comentario = historialRequerimientoEntity.comentario;
                historialRequerimientoDTO.estadoVigente = historialRequerimientoEntity.estado_vigente;
                historialRequerimientoDTO.estadoHistorial = historialRequerimientoEntity.estado_historial;

                return historialRequerimientoDTO;
            }
            return null;
        }
        public historial_sugerencia HistorialRequerimientoDTOToEntity(HistorialRequerimientoDTO historialRequerimientoDTO)
        {
            if (historialRequerimientoDTO != null)
            {
                historial_sugerencia historialRequerimientoEntity = new historial_sugerencia();

                historialRequerimientoEntity.ID = historialRequerimientoDTO.id;
                historialRequerimientoEntity.sugerencia_ID = historialRequerimientoDTO.sugerenciaId;
                historialRequerimientoEntity.fecha = historialRequerimientoDTO.fecha;
                historialRequerimientoEntity.porcentaje = historialRequerimientoDTO.porcentaje;
                historialRequerimientoEntity.usuario_ID = historialRequerimientoDTO.usuarioId;
                historialRequerimientoEntity.comentario = historialRequerimientoDTO.comentario;
                historialRequerimientoEntity.estado_vigente = historialRequerimientoDTO.estadoVigente;
                historialRequerimientoEntity.estado_historial = historialRequerimientoDTO.estadoHistorial;

                return historialRequerimientoEntity;
            }
            return null;
        }