private void SearchLocation() { Console.WriteLine("Enter the city of the location you would like to search: "); string city = Console.ReadLine(); Console.WriteLine("Enter the state of the location you would like to search: "); string state = Console.ReadLine(); try { Location foundLocation = _shopBL.GetLocation(new Location(city, state)); Console.WriteLine("Store found! \n"); Console.Write(foundLocation.ToString()); Log.Information($"Successfully searched store at {foundLocation.City}, {foundLocation.State}"); } catch (Exception ex) { Console.WriteLine(ex.Message); Console.WriteLine($"There is no store at that location in the database."); } }