BistroDriveWebApp.Controllers.ProfileController.AddDish C# (CSharp) Method

AddDish() private method

private AddDish ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult
        public ActionResult AddDish()
        {
            ViewBag.Types = DataManager.Dish.GetDishTypes();
            DishViewModel model = new DishViewModel();
            return View(model);
        }

Same methods

ProfileController::AddDish ( DishViewModel model, System.Web.HttpPostedFileBase image ) : System.Web.Mvc.ActionResult