public TimeTableModel(DateTime departureTime, DateTime arrivalTime, TypeAirplane type, AirPort @from, AirPort to, AirplaneModel plane) { DepartureTime = departureTime; ArrivalTime = arrivalTime; Type = type; From = @from; To = to; Plane = plane; }
public IActionResult Edit(TypeAirplane typeAirplane) { if (ModelState.IsValid) { db.TypeAirplanes.Update(typeAirplane); db.SaveChanges(); } return(RedirectToAction("Index")); }
public static TypeAirplane[] GetTypeAirplanes(int countSize) { string[] NameType = { "Грузовой", "Пассажирский", "Грузовой+Пассажирский", "Смешанный" }; string[] Appointment = { "Перевоз грузов", "Перевоз пассажиров", "Перевоз по назначению", "Может все" }; string[] Limitation = { "Только грузы", "Только люди", "Грузы+люди", "Грузы, люди, животные, техника" }; Random random = new Random(); TypeAirplane[] typeAirplanes = new TypeAirplane[countSize]; for (int i = 0; i < countSize; i++) { typeAirplanes[i] = new TypeAirplane { Id = i + 1, NameType = NameType[random.Next(0, 3)], Appointment = Appointment[random.Next(0, 3)], Limitation = Limitation[random.Next(0, 3)] }; } return(typeAirplanes); }