@model EMIS.ViewModel.ProjectFeeTypeView @using EMIS.Web.Controls; @using EMIS.Entities; @using Bowin.Web.Controls.Mvc; @{ ViewBag.Title = "Edit"; } @section scripts{ }
@Html.LabelFor(x => x.FeeTypeName): | @Html.DictionaryDropDownListFor(EMIS.ViewModel.DictionaryItem.EX_ExaminationProjectFeeType, x => x.FeeTypeID) |
@Html.LabelFor(x => x.Fee): | @Html.TextBoxFor(x => x.Fee) |
@Html.LabelFor(x => x.IsResit): | @Html.CheckBox("IsResit", Model.IsResit == true) |
@Html.LabelFor(x => x.IsTrainingFee): | @Html.CheckBox("IsTrainingFee", Model.IsTrainingFee == true) |
@Html.LabelFor(x => x.IsMaterial): | @Html.CheckBox("IsMaterial", Model.IsMaterial == true) |