Skip to content
This repository has been archived by the owner on Mar 20, 2023. It is now read-only.

Commit

Permalink
Updated url blob storage
Browse files Browse the repository at this point in the history
  • Loading branch information
juanlao committed Mar 25, 2019
1 parent 90da2ca commit 7b25979
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions Source/CouponReader.Common/Services/CouponsService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public List<Coupon> Coupons
Redeemed = false,
User = "Annick B. Addison",
UserName = "cbaddison1",
ImageUrl = "https://ttdesktopimgdev.blob.core.windows.net/coupons-images/Coupon_1.png",
ImageUrl = "https://tailwindtraders.blob.core.windows.net/desktop/Coupon_1.png",
Expiration = DateTime.Now.AddYears(2)
},

Expand All @@ -48,7 +48,7 @@ public List<Coupon> Coupons
Redeemed = true,
User = "Mathew Y. Rosendahl",
UserName = "lusi_123",
ImageUrl = "https://ttdesktopimgdev.blob.core.windows.net/coupons-images/Coupon_2.png",
ImageUrl = "https://tailwindtraders.blob.core.windows.net/desktop/Coupon_2.png",
Expiration = DateTime.Now.AddYears(2).AddHours(7)
},

Expand All @@ -60,7 +60,7 @@ public List<Coupon> Coupons
Redeemed = true,
User = "Gillian Carter",
UserName = "thecarter",
ImageUrl = "https://ttdesktopimgdev.blob.core.windows.net/coupons-images/Coupon_3.png",
ImageUrl = "https://tailwindtraders.blob.core.windows.net/desktop/Coupon_3.png",
Expiration = DateTime.Now.AddYears(2).AddHours(6)
},

Expand All @@ -72,7 +72,7 @@ public List<Coupon> Coupons
Redeemed = true,
User = "Jack Bains",
UserName = "bains_12345",
ImageUrl = "https://ttdesktopimgdev.blob.core.windows.net/coupons-images/Coupon_4.png",
ImageUrl = "https://tailwindtraders.blob.core.windows.net/desktop/Coupon_4.png",
Expiration = DateTime.Now.AddYears(2)
},

Expand All @@ -84,7 +84,7 @@ public List<Coupon> Coupons
Redeemed = true,
User = "Javier Suárez",
UserName = "jsuarez",
ImageUrl = "https://ttdesktopimgdev.blob.core.windows.net/coupons-images/Coupon_5.png",
ImageUrl = "https://tailwindtraders.blob.core.windows.net/desktop/Coupon_5.png",
Expiration = DateTime.Now.AddYears(2).AddHours(5)
}
};
Expand Down
10 changes: 5 additions & 5 deletions Source/CouponReader.Core.Common/Services/CouponsService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public List<Coupon> Coupons
Redeemed = false,
User = "Annick B. Addison",
UserName = "cbaddison1",
ImageUrl = "https://ttdesktopimgdev.blob.core.windows.net/coupons-images/Coupon_1.png",
ImageUrl = "https://tailwindtraders.blob.core.windows.net/desktop/Coupon_1.png",
Expiration = DateTime.Now.AddYears(2)
},

Expand All @@ -48,7 +48,7 @@ public List<Coupon> Coupons
Redeemed = true,
User = "Mathew Y. Rosendahl",
UserName = "lusi_123",
ImageUrl = "https://ttdesktopimgdev.blob.core.windows.net/coupons-images/Coupon_2.png",
ImageUrl = "https://tailwindtraders.blob.core.windows.net/desktop/Coupon_2.png",
Expiration = DateTime.Now.AddYears(2).AddHours(7)
},

Expand All @@ -60,7 +60,7 @@ public List<Coupon> Coupons
Redeemed = true,
User = "Gillian Carter",
UserName = "thecarter",
ImageUrl = "https://ttdesktopimgdev.blob.core.windows.net/coupons-images/Coupon_3.png",
ImageUrl = "https://tailwindtraders.blob.core.windows.net/desktop/Coupon_3.png",
Expiration = DateTime.Now.AddYears(2).AddHours(6)
},

Expand All @@ -72,7 +72,7 @@ public List<Coupon> Coupons
Redeemed = true,
User = "Jack Bains",
UserName = "bains_12345",
ImageUrl = "https://ttdesktopimgdev.blob.core.windows.net/coupons-images/Coupon_4.png",
ImageUrl = "https://tailwindtraders.blob.core.windows.net/desktop/Coupon_4.png",
Expiration = DateTime.Now.AddYears(2)
},

Expand All @@ -84,7 +84,7 @@ public List<Coupon> Coupons
Redeemed = true,
User = "Javier Suárez",
UserName = "jsuarez",
ImageUrl = "https://ttdesktopimgdev.blob.core.windows.net/coupons-images/Coupon_5.png",
ImageUrl = "https://tailwindtraders.blob.core.windows.net/desktop/Coupon_5.png",
Expiration = DateTime.Now.AddYears(2).AddHours(5)
}
};
Expand Down

0 comments on commit 7b25979

Please sign in to comment.