Привет, я получаю эту ошибку:
Мой код такой, в Reservation Controller :
private void loadCountry()
{
ReservationHelper reservationHelperObject = new ReservationHelper();
ViewData["countryOut"] = new SelectList(reservationHelperObject.LoadCountry());
ViewData["countryIn"] = new SelectList(reservationHelperObject.LoadCountry());
CountryOut = ((MultiSelectList)(ViewData["CountryOut"])).ToList()[0].Text;
}
Есть идеи?
Продолжение кода:
private void loadDefaultvalues()
{
List<string> emptyList = new List<string>();
ViewData["locationIn"] = new SelectList(emptyList);
ViewData["locationOut"] = new SelectList(emptyList);
ViewData["RateProgram"] = new SelectList(emptyList);
ViewData["Currency"] = new SelectList(emptyList);
ViewData["VehicleClass"] = new SelectList(emptyList);
ViewData["ReservationStatusDropDownList"] = new SelectList(emptyList);
ViewData["Miles"] = new SelectList(emptyList);
ViewData["currencyDropDownList"] = new SelectList(emptyList);
ViewData["ReservationStatus"] = new SelectList(emptyList);
ViewData["vehicleClassDropDownList"] = new SelectList(emptyList);
ViewData["rateProgramDropDownList"] = new SelectList(emptyList);
ViewData["parentOutDropDownList"] = new SelectList(emptyList);
ViewData["parentInDropDownList"] = new SelectList(emptyList);
ViewData["zoneOutDropDownList"] = new SelectList(emptyList);
ViewData["zoneInDropDownList"] = new SelectList(emptyList);
ViewData["locationOutDropDownList"] = new SelectList(emptyList);
ViewData["locationInDropDownList"] = new SelectList(emptyList);
ViewData["authorizationDropDownList"] = new SelectList(emptyList);
ViewData["specialServiceDropDownList"] = new SelectList(emptyList);
ViewData["RentalStatus"] = new SelectList(emptyList);
ViewData["Status"] = new SelectList(emptyList);
ViewData["Fop"] = new SelectList(emptyList);
ViewData["CustomerType"] = new SelectList(emptyList);
this.loadRentaStatus();
this.loadStatus();
this.loadFop();
this.loadCustomerTypes();
this.loadCountry();
this.loadReservationStatuses();
//this.loadMilesPercentage()
this.loadSpecialService();
this.loadRAType();
this.loadAirline();
this.loadTerminal();
this.loadParentCode();
this.loadZoneCode();
this.loadAuthorizationType();
}
Спасибо