Ejemplo n.º 1
0
        // GET: ShoppingList
        public ActionResult Index()
        {
            IndexViewModel vm = new IndexViewModel
            {
                Customers = ShoppingListService.GetCustomerSelectViewModel()
            };

            return(View(vm));
        }