public ActionResult UserIndex(string id)
        {
            var vm = new MarketingViewModel(id);

            vm.HandleRequest();
            return(View(vm));
        }
        public ActionResult IndexAdmin(string id, bool role)
        {
            var vm = new MarketingViewModel(id, role);

            vm.HandleRequest();
            return(View("Index", vm));
        }
 public ActionResult UserIndex(MarketingViewModel vm)
 {
     vm.HandleRequest();
     // NOTE: Must clear the model state in order to bind
     //       the @Html helpers to the new model values
     ModelState.Clear();
     return(View(vm));
 }