コード例 #1
0
 public ActionResult AddFeeType(FeeTypeDetailViewModel model)
 {
     model.EnteredBy = Convert.ToInt32(Session["UserId"]);
     TempData["msg"] = feeManegementService.AddUpdateFeeTypeDetail(model);
     return(Redirect("AddFeeType"));
 }