@using OSS.Models @model FinancingProfileExternal @{ Layout = "~/Views/Shared/_Layout.cshtml"; }

  PROJECTS New Certificate

@using (Html.BeginForm("PostFinancingProfileChange", "NewCOI", FormMethod.Post, new { id = "social", @novalidate = "novalidate", @class = "needs-validation text-left section social" })) { @Html.AntiForgeryToken()
 Financing Details in (USD)   

@if (Session["TypeOfOwnership"].ToString() == "Foreign") { } @if (Session["TypeOfOwnership"].ToString() == "Local") { } @if (Session["TypeOfOwnership"].ToString() == "JV") { }
@if (Session["TypeofOwnership"].ToString() == "Local" || Session["TypeofOwnership"].ToString() == "JV") {
@Html.TextBoxFor(m => m.LocalEquity, new { @minlenght = "3", @pattern = "^[0-9.]+$", @name = "LocalEquity", @class = "form-control mb-4", @id = "LastName", @type = "text", @required = "true" })
Invalid Input
} @if (Session["TypeofOwnership"].ToString() == "Foreign" || Session["TypeofOwnership"].ToString() == "JV") {
@Html.TextBoxFor(m => m.ForeignEquity, new { @minlenght = "3", @pattern = "^[0-9.]+$", @name = "ForeignEquity", @class = "form-control mb-4", @id = "LastName", @type = "text", @required = "true" })
Invalid Input
@Html.DropDownListFor(m => m.SourceCountryEquity, new SelectList(Model.ListofForeignEquity , "Value", "Text"), new { @class = "selectpicker form-control", @id = "SourceCountryEquity", @name = "SourceCountryEquity" })
Invalid Input
}
@Html.TextBoxFor(m => m.ForeignLoan, new { @minlenght = "3", @pattern = "^[0-9.]+$", @name = "ForeignLoan", @class = "form-control mb-4", @id = "LastName", @type = "text", @required = "true" })
Invalid Input
@Html.DropDownListFor(m => m.SourceCountryLoan, new SelectList(Model.ListofForeignLoan , "Value", "Text"), new { @class = "selectpicker form-control", @id = "SourceCountryLoan", @name = "Country" })
Invalid Input
@Html.TextBoxFor(m => m.LocalLoan, new { @minlenght = "3", @pattern = "^[0-9.]+$", @name = "LocalLoan", @class = "form-control mb-4", @id = "LastName", @type = "text", @required = "true" })
Invalid Input
@Html.TextBoxFor(m => m.WorkingCapital, new { @minlenght = "3", @pattern = "^[0-9.]+$", @name = "WorkingCapital", @class = "form-control mb-4", @id = "WorkingCapital", @type = "text", @required = "true" })
Invalid Input

}