Пример #1
0
        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());
        }
Пример #2
0
        // GET: Percentage
        public ActionResult GetAllPercentage()
        {
            var percBl = new PercentageBl();

            return(View(percBl.GetAllIngredients()));
        }