public MV_Exception GuardarEstadosProcesos(TBC_ESTADO_PROCESO estado_proceso, int idUsuario)
        {
            var result = new MV_Exception();

            try
            {
                result = H_LogErrorEXC.resultToException(_context.SP_TBC_ESTADO_PROCESO_Insert(estado_proceso.CODIGO_ESTADO_PROCESO,
                                                                                               estado_proceso.DESCRIPCION_ESTADO_PROCESO,
                                                                                               estado_proceso.ICONO_ESTADO_PROCESO,
                                                                                               estado_proceso.COLOR_ESTADO_PROCESO,
                                                                                               idUsuario).FirstOrDefault());
                if (result.IDENTITY == null)
                {
                    throw new Exception(result.ERROR_MESSAGE);
                }
            }
            catch (Exception e)
            {
                H_LogErrorEXC.GuardarRegistroLogError(e);
            }
            return(result);
        }