@model HairPrestation @{ string[] HairLen = new string[] {SR["HalfLong"],SR["Long"],SR["Short"]}; }
@Html.DisplayNameFor(model => model.Gender)
@SR[Model.Gender.ToString()]
@if ((int)Model.Gender<1) {
@Html.DisplayNameFor(model => model.Length)
@HairLen[(int)Model.Length]
}
@Html.DisplayNameFor(model => model.Shampoo)
@Html.DisplayFor(model => model.Shampoo)
@Html.DisplayNameFor(model => model.Cut)
@Html.DisplayFor(model => model.Cut)
@Html.DisplayNameFor(model => model.Tech)
@SR[Model.Tech.ToString()]
@Html.DisplayNameFor(model => model.Dressing)
@Html.DisplayFor(model => model.Dressing)
@Html.DisplayNameFor(model => model.Cares)
@Html.DisplayFor(model => model.Cares)