public JsonResult BuscarComprobante(int idComprobante, int idCuentaBancaria) { ComprobanteBL objBL = new ComprobanteBL(); var comprobante = objBL.getComprobanteEjecutadoEnEmpresa(idComprobante, idCuentaBancaria, getCurrentUser().IdEmpresa); return Json(new { comprobante }, JsonRequestBehavior.AllowGet); }