BistroDriveWebApp.Models.GeolocationRepository.GetCityById C# (CSharp) 메소드

GetCityById() 공개 메소드

public GetCityById ( int id ) : city
id int
리턴 city
        public city GetCityById(int id)
        {
            return bufferedCity.FirstOrDefault(c => c.id_city == id);
        }