コード例 #1
0
        // GET: /Home/
        public ActionResult Index()
        {
            var proxy     = new ServiceProxyB2CClient();
            var productos = new PromocionesModel {
                Promociones = proxy.ConsultarCampaniaProducto()
            };

            return(View(productos));
        }
コード例 #2
0
 public PromocionesController()
 {
     PromoModel = new PromocionesModel();
 }