@model GreenTree.Strohrmann.ERP.Web.Models.Business.CraftEmployeeModel
@{
var id = Model != null && !String.IsNullOrEmpty(Model.DictIdentifier) ? Model.DictIdentifier : Html.RandomId();
}
@if (Model == null || (Model != null && (!Model.Index.HasValue || Model.Index == 0)))
{
}
@Html.ValidationMessage(String.Format("CraftEmployees[{0}].EmployeeId", id), new { @class = "text-danger" })
@if (Model == null || (Model != null && (!Model.Index.HasValue || Model.Index == 0)))
{
}
@Html.ValidationMessage(String.Format("CraftEmployees[{0}].Comment", id), new { @class = "text-danger" })
@if (Model != null && Model.Index > 0)
{
}