<?php

class CuentaConcepto
{
    public static function find($id)
    {
        return Yii::app()->getDb()->createCommand('
            select id_cuenta
            from ajuste_haberes.concepto_ajuste
            where id=:id
                AND blnborrado IS FALSE
        ')->queryScalar([
            'id' => $id
        ]);
    }
}
