public int UpdateConfiguracionNivelesCertificacion(ConfiguracionNivelCertificacion item, string ip)
 {
     try
     {
         _context.ConfiguracionNivelCertificacions.Update(item);
         procLog.AddLog(ip, procLog.GetPropertyValues(item, System.Reflection.MethodBase.GetCurrentMethod().Name), "OK", 200);
         return(_context.SaveChanges());
     }
     catch (Exception ex)
     {
         procLog.AddLog(ip, procLog.GetPropertyValues(item, System.Reflection.MethodBase.GetCurrentMethod().Name), ex.InnerException.Message, 400);
         return(0);
     }
 }
        public long AddConfiguracionNivelesCertificacion(ConfiguracionNivelCertificacion item, string ip)
        {
            try
            {
                var ConfigNivelesCertificacionRes = _context.ConfiguracionNivelCertificacions.Add(item);
                _context.SaveChanges();

                procLog.AddLog(ip, procLog.GetPropertyValues(item, System.Reflection.MethodBase.GetCurrentMethod().Name), "OK", 200);
                return(Int32.Parse(ConfigNivelesCertificacionRes.Entity.IdConfiguraNivelCertifica.ToString()));
            }
            catch (Exception ex)
            {
                procLog.AddLog(ip, procLog.GetPropertyValues(item, System.Reflection.MethodBase.GetCurrentMethod().Name), ex.InnerException.Message, 400);
                var r = ex.Message;
                return(0);
            }
        }