You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 17, 2023. It is now read-only.
?"Mock Services are simulated objects that mimic the behavior of real services using a controlled approach."
54
+
:"When enabling the use of microservices/containers, the app will attempt to use real services deployed as Docker containers at the specified base endpoint, which will must be reachable through the network.";
66
55
}
67
56
}
68
57
@@ -72,30 +61,23 @@ public bool UseAzureServices
72
61
set
73
62
{
74
63
_useAzureServices=value;
75
-
76
64
UpdateUseAzureServices();
77
-
78
65
RaisePropertyChanged(()=>UseAzureServices);
79
66
}
80
67
}
81
68
82
69
publicstringTitleUseFakeLocation
83
70
{
84
-
get=>_titleUseFakeLocation;
85
-
set
86
-
{
87
-
_titleUseFakeLocation=value;
88
-
RaisePropertyChanged(()=>TitleUseFakeLocation);
89
-
}
71
+
get{return!UseFakeLocation?"Use Real Location":"Use Fake Location";}
DescriptionUseAzureServices="Mock Services are simulated objects that mimic the behavior of real services using a controlled approach.";
275
-
}
276
-
else
277
-
{
278
-
TitleUseAzureServices="Use Microservices/Containers from eShopOnContainers";
279
-
DescriptionUseAzureServices="When enabling the use of microservices/containers, the app will attempt to use real services deployed as Docker containers at the specified base endpoint, which will must be reachable through the network.";
280
-
}
281
-
}
282
-
283
-
privatevoidUpdateInfoFakeLocation()
284
-
{
285
-
if(!UseFakeLocation)
286
-
{
287
-
TitleUseFakeLocation="Use Real Location";
288
-
DescriptionUseFakeLocation="When enabling location, the app will attempt to use the location from the device.";
289
-
290
-
}
291
-
else
292
-
{
293
-
TitleUseFakeLocation="Use Fake Location";
294
-
DescriptionUseFakeLocation="Fake Location data is added for marketing campaign testing.";
0 commit comments