public ContentResult SelectStation()
        {
            var Content = new ContentResult();
            IEnumerable <Station> stations = STATION_MANAGER.selectStation();

            Content.Content = stations.ToString();
            return(Content);
        }