/// <summary>
        /// ELIMINA un registro de la Entidad Asistencia.Justificaciones
        /// En la BASE de DATO la Tabla : [Asistencia.Justificaciones]
        /// <summary>
        /// <returns>bool</returns>
        public bool Delete(string prm_CodigoJustificacion)
        {
            int codigoRetorno = -1;

            try
            {
                using (_CROMTimeDataContext SQLDC = new _CROMTimeDataContext(conexion))
                {
                    codigoRetorno = SQLDC.omgc_mnt_DeleteJustificaciones(prm_CodigoJustificacion);
                }
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return(codigoRetorno == 0 ? true : false);
        }