//Calls autocomplete method for "To" text box in Index View
 public JsonResult AutocompleteTo(string input, string fromStation)
 {
     return(Json(_stationBll.ServiceAutocompleteTo(input, fromStation)));
 }