// GET: Master public ActionResult Item() { ItemMsaterModel model = new ItemMsaterModel(); model.ItemMasterList = masterService.GetItemMasterList(); return(View(model)); }
public ActionResult Index() { ItemMsaterModel model = new ItemMsaterModel(); try { MasterService masterService = new MasterService(); model.ItemMasterList = masterService.GetItemMasterList(); } catch { } return(View(model)); }