// GET: Stations
 public ActionResult Index()
 {
     var db = new RzdTicketsDb();
     var stations = db.GetStations();
     return View(stations);
 }
Esempio n. 2
0
 public ActionResult Create()
 {
     var db = new RzdTicketsDb();
     var station = db.GetStations();
     return View(station);
 }