private void CollectBarsFromProvider(IBeerable provider, BarDataModel barList,
                                      string latitude, string longitude, string radius)
 {
     try
     {
         barList.CombineLists(provider.GetBarsAround(latitude, longitude, radius));
     }
     catch (Exception exception)
     {
         MessageBox.Show("Something went wrong with the message: " + exception.Message);
     }
 }