public ActionResult GetAllItemType() { DalSysItemType objSource = new DalSysItemType(); var allData = objSource.GetAllActiveItemTypeLeather(); return(Json(allData, JsonRequestBehavior.AllowGet)); }
public ActionResult FinishProductionSchedule() { ViewBag.formTiltle = "Finish Production Schedule"; ViewBag.ddlFinishProductionFloorList = objDalSysStore.GetAllActiveFinishProductionStore(); ViewBag.ddlProcessList = daiSysProductionProces.GetAllActiveFinishProcessList(); ViewBag.ddlItemTypeList = daliItemType.GetAllActiveItemTypeLeather(); ViewBag.ddlLeatherStatusList = dalSysLeatherStatus.GetAllLeatherStatus(); ViewBag.ddlThicknessUnitList = dalSysUnit.GetAllActiveThicknessUnit(); ViewBag.ddlAvgSizeUnitList = dalSysUnit.GetAllActiveLeatherUnit(); return(View()); }