@Html.LabelFor(model => model.CustomerName, htmlAttributes: new { @class = "control-label col-md-12" })
@Html.DropDownListFor(model => model.CustomerName, ViewBag.Customer as SelectList, "--Select Customer--", new { @class = "form-control" })
@Html.ValidationMessageFor(model => model.CustomerName, "", new { @class = "text-danger" })