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