Exemplo n.º 1
0
 public IActionResult _ListarFacturas(long pv)
 {
     if (pv != 0)
     {
         return(PartialView(service.GetAllFacturas().Where(f => f.IdPuntoVenta == pv).ToList()));
     }
     else
     {
         return(PartialView(service.GetAllFacturas()));
     }
 }