//Lista de productos con dapper
        public ActionResult ProductosDapper(string categ)
        {
            //categ = "Ropa Mujeres";
            RepoDapper EmpRepo = new RepoDapper();
            var        prod    = EmpRepo.GetSubCategorias(categ);

            return(View(prod));
        }
        //Lista de subcategorias con dapper
        public ActionResult SubCategoriaDapper(string categoria)
        {
            //categoria = "Ropa, Zapatos y Accesorios";
            RepoDapper EmpRepo = new RepoDapper();
            var        categ   = EmpRepo.GetSubCategorias(categoria);

            return(View(categ));
        }