// GET: Prendas
        public ActionResult Index()
        {
            var tiposDePrendas = tipoDePrendaRepository.GetAll();

            return(View(prendaRepository.GetAll().Select(x => {
                x.TipoDePrenda = tiposDePrendas.First(t => t.TipoDePrendaId == x.TipoDePrendaID);
                return x;
            })));
        }
 // GET: TiposDePrendas
 public ActionResult Index()
 {
     return(View(repo.GetAll()));
 }