Exemplo n.º 1
0
        public bool UpdateStation(Station s)
        {
            int index = Stations.FindIndex(st => st.Id == s.Id);

            Stations[index] = s;
            return(true);
        }