예제 #1
0
 /// <summary>
 /// Road photo is loaded asynchronously for the trip
 /// </summary>
 /// <param name="trip">
 /// information to download the image is taken from trip object
 /// </param>
 /// <returns></returns>
 private async Task DownloadStaticImageWayAsync(Trip trip)
 {
     await _utilService.DownloadAsync(new Uri(trip.StaticImageWayUrl), trip.UserId, trip.StaticImageWay);
 }