@Html.EditorFor(model => model.Rate, new { htmlAttributes = new { @class = "form-control",placeholder="0.00" } })
Exchange Rate for 1 unit of base currency
@Html.ValidationMessageFor(model => model.Rate, "", new { @class = "text-danger" })
@Html.EditorFor(model => model.USDExchageRate, new { htmlAttributes = new { @class = "form-control", placeholder = "0.00" } })
If online payment gateway will not support your primary currency then payment would be in US dollar and this exchange rate will apply to convert dollars into your primary currency
@Html.ValidationMessageFor(model => model.USDExchageRate, "", new { @class = "text-danger" })