public ActionResult AddPercentage(PercentageView model) { if (ModelState.IsValid) { FeedingStockBussiness fStock = new FeedingStockBussiness(); ViewBag.FeedingStockId = new SelectList(fStock.GetAllFeedingStock(), "FeedingStockId", "ItemName"); FeedingSchemeBl fScheme = new FeedingSchemeBl(); ViewBag.FeedingSchemeId = new SelectList(fScheme.GetAllFeedSchemeViews(), "FeedingSchemeId", "SchemeCode"); PercentageBl percBl = new PercentageBl(); if (percBl.IsAvailable(model)) { percBl.AddPercent(model); return(RedirectToAction("GetAllPercentage")); } return(RedirectToAction("ValidateAvailable")); } return(View()); }
// GET: Percentage public ActionResult GetAllPercentage() { var percBl = new PercentageBl(); return(View(percBl.GetAllIngredients())); }