// GET: Factura public ActionResult Index() { List <FacturaModels> factura = facturaRepository.GetAllFacturaByUser(clientRepository.GetClientByEmail(User.Identity.Name)); return(View("Index", factura)); }