예제 #1
0
 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);
 }