public ActionResult Delete(PromocionViewModels pr)
        {
            App_Start.AutoMapperWebConfiguration.Configure();
            var dtopro = Mapper.Map <PromocionViewModels, dtoPromocion>(pr);

            var bll = new dtoPromocion();

            bll.Eliminar(dtopro);

            return(RedirectToAction("Index"));
        }