diff --git a/MyFirstMauiApp/MyFirstMauiApp.sln b/MyFirstMauiApp/MyFirstMauiApp.sln
index 3760832..0c1f8a0 100644
--- a/MyFirstMauiApp/MyFirstMauiApp.sln
+++ b/MyFirstMauiApp/MyFirstMauiApp.sln
@@ -11,7 +11,9 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PageLayout", "PageLayout\Pa
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SharedResources", "SharedResources\SharedResources.csproj", "{9A9A55D0-AD77-4510-97E7-A345ABFB5C28}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FlyoutTabSearch", "FlyoutTabSearch\FlyoutTabSearch.csproj", "{389BD760-810D-45D4-B67A-2B95FB8B5F74}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FlyoutTabSearch", "FlyoutTabSearch\FlyoutTabSearch.csproj", "{389BD760-810D-45D4-B67A-2B95FB8B5F74}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UseRestService", "UseRestService\UseRestService.csproj", "{6878953F-C5FF-4D93-B920-029350FB6B54}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -49,6 +51,12 @@ Global
{389BD760-810D-45D4-B67A-2B95FB8B5F74}.Release|Any CPU.ActiveCfg = Release|Any CPU
{389BD760-810D-45D4-B67A-2B95FB8B5F74}.Release|Any CPU.Build.0 = Release|Any CPU
{389BD760-810D-45D4-B67A-2B95FB8B5F74}.Release|Any CPU.Deploy.0 = Release|Any CPU
+ {6878953F-C5FF-4D93-B920-029350FB6B54}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {6878953F-C5FF-4D93-B920-029350FB6B54}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {6878953F-C5FF-4D93-B920-029350FB6B54}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
+ {6878953F-C5FF-4D93-B920-029350FB6B54}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {6878953F-C5FF-4D93-B920-029350FB6B54}.Release|Any CPU.Build.0 = Release|Any CPU
+ {6878953F-C5FF-4D93-B920-029350FB6B54}.Release|Any CPU.Deploy.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
diff --git a/MyFirstMauiApp/UseRestService/App.xaml b/MyFirstMauiApp/UseRestService/App.xaml
new file mode 100644
index 0000000..c2e2b5b
--- /dev/null
+++ b/MyFirstMauiApp/UseRestService/App.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/MyFirstMauiApp/UseRestService/App.xaml.cs b/MyFirstMauiApp/UseRestService/App.xaml.cs
new file mode 100644
index 0000000..e0f24be
--- /dev/null
+++ b/MyFirstMauiApp/UseRestService/App.xaml.cs
@@ -0,0 +1,12 @@
+namespace UseRestService
+{
+ public partial class App : Application
+ {
+ public App()
+ {
+ InitializeComponent();
+
+ MainPage = new AppShell();
+ }
+ }
+}
diff --git a/MyFirstMauiApp/UseRestService/AppShell.xaml b/MyFirstMauiApp/UseRestService/AppShell.xaml
new file mode 100644
index 0000000..2ab84d9
--- /dev/null
+++ b/MyFirstMauiApp/UseRestService/AppShell.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
diff --git a/MyFirstMauiApp/UseRestService/AppShell.xaml.cs b/MyFirstMauiApp/UseRestService/AppShell.xaml.cs
new file mode 100644
index 0000000..e6fb281
--- /dev/null
+++ b/MyFirstMauiApp/UseRestService/AppShell.xaml.cs
@@ -0,0 +1,10 @@
+namespace UseRestService
+{
+ public partial class AppShell : Shell
+ {
+ public AppShell()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/MyFirstMauiApp/UseRestService/Data/Messages.cs b/MyFirstMauiApp/UseRestService/Data/Messages.cs
new file mode 100644
index 0000000..4bc519d
--- /dev/null
+++ b/MyFirstMauiApp/UseRestService/Data/Messages.cs
@@ -0,0 +1,16 @@
+using CommunityToolkit.Mvvm.Messaging.Messages;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace UseRestService.Data
+{
+ public class RefreshMessage : ValueChangedMessage
+ {
+ public RefreshMessage(bool value) : base(value)
+ {
+ }
+ }
+}
diff --git a/MyFirstMauiApp/UseRestService/Data/Part.cs b/MyFirstMauiApp/UseRestService/Data/Part.cs
new file mode 100644
index 0000000..f0250be
--- /dev/null
+++ b/MyFirstMauiApp/UseRestService/Data/Part.cs
@@ -0,0 +1,37 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace UseRestService.Data
+{
+ [Serializable]
+ public class Part
+ {
+ public string PartID { get; set; }
+
+ public string PartName { get; set; }
+
+ public string TheSuppliers { get; set; }
+
+ public string PartType { get; set; }
+
+ public List Suppliers { get; set; } = new List();
+ public DateTime PartAvailableDate { get; set; }
+
+ public string SupplierString
+ {
+ get
+ {
+ string result = String.Empty;
+ foreach (string supplier in Suppliers)
+ {
+ result += $"{supplier}, ";
+ }
+ result = result.Trim(',', ' ');
+ return result;
+ }
+ }
+ }
+}
diff --git a/MyFirstMauiApp/UseRestService/Data/PartManager.cs b/MyFirstMauiApp/UseRestService/Data/PartManager.cs
new file mode 100644
index 0000000..d582cd1
--- /dev/null
+++ b/MyFirstMauiApp/UseRestService/Data/PartManager.cs
@@ -0,0 +1,42 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace UseRestService.Data
+{
+ public static class PartsManager
+ {
+ // TODO: Add fields for BaseAddress, Url, and authorizationKey
+ static readonly string BaseAddress = "URL GOES HERE";
+ static readonly string Url = $"{BaseAddress}/api/";
+
+ static HttpClient client;
+
+ private static async Task GetClient()
+ {
+ throw new NotImplementedException();
+ }
+
+ public static async Task> GetAll()
+ {
+ throw new NotImplementedException();
+ }
+
+ public static async Task Add(string partName, string supplier, string partType)
+ {
+ throw new NotImplementedException();
+ }
+
+ public static async Task Update(Part part)
+ {
+ throw new NotImplementedException();
+ }
+
+ public static async Task Delete(string partID)
+ {
+ throw new NotImplementedException();
+ }
+ }
+}
diff --git a/MyFirstMauiApp/UseRestService/MainPage.xaml b/MyFirstMauiApp/UseRestService/MainPage.xaml
new file mode 100644
index 0000000..36d13f9
--- /dev/null
+++ b/MyFirstMauiApp/UseRestService/MainPage.xaml
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/MyFirstMauiApp/UseRestService/MainPage.xaml.cs b/MyFirstMauiApp/UseRestService/MainPage.xaml.cs
new file mode 100644
index 0000000..3804e6a
--- /dev/null
+++ b/MyFirstMauiApp/UseRestService/MainPage.xaml.cs
@@ -0,0 +1,25 @@
+namespace UseRestService
+{
+ public partial class MainPage : ContentPage
+ {
+ int count = 0;
+
+ public MainPage()
+ {
+ InitializeComponent();
+ }
+
+ private void OnCounterClicked(object sender, EventArgs e)
+ {
+ count++;
+
+ if (count == 1)
+ CounterBtn.Text = $"Clicked {count} time";
+ else
+ CounterBtn.Text = $"Clicked {count} times";
+
+ SemanticScreenReader.Announce(CounterBtn.Text);
+ }
+ }
+
+}
diff --git a/MyFirstMauiApp/UseRestService/MauiProgram.cs b/MyFirstMauiApp/UseRestService/MauiProgram.cs
new file mode 100644
index 0000000..987631a
--- /dev/null
+++ b/MyFirstMauiApp/UseRestService/MauiProgram.cs
@@ -0,0 +1,25 @@
+using Microsoft.Extensions.Logging;
+
+namespace UseRestService
+{
+ public static class MauiProgram
+ {
+ public static MauiApp CreateMauiApp()
+ {
+ var builder = MauiApp.CreateBuilder();
+ builder
+ .UseMauiApp()
+ .ConfigureFonts(fonts =>
+ {
+ fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
+ fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
+ });
+
+#if DEBUG
+ builder.Logging.AddDebug();
+#endif
+
+ return builder.Build();
+ }
+ }
+}
diff --git a/MyFirstMauiApp/UseRestService/Pages/PartsPage.xaml b/MyFirstMauiApp/UseRestService/Pages/PartsPage.xaml
new file mode 100644
index 0000000..819391e
--- /dev/null
+++ b/MyFirstMauiApp/UseRestService/Pages/PartsPage.xaml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/MyFirstMauiApp/UseRestService/Pages/PartsPage.xaml.cs b/MyFirstMauiApp/UseRestService/Pages/PartsPage.xaml.cs
new file mode 100644
index 0000000..118cd53
--- /dev/null
+++ b/MyFirstMauiApp/UseRestService/Pages/PartsPage.xaml.cs
@@ -0,0 +1,9 @@
+namespace UseRestService.Pages;
+
+public partial class PartsPage : ContentPage
+{
+ public PartsPage()
+ {
+ InitializeComponent();
+ }
+}
\ No newline at end of file
diff --git a/MyFirstMauiApp/UseRestService/Platforms/Android/AndroidManifest.xml b/MyFirstMauiApp/UseRestService/Platforms/Android/AndroidManifest.xml
new file mode 100644
index 0000000..e9937ad
--- /dev/null
+++ b/MyFirstMauiApp/UseRestService/Platforms/Android/AndroidManifest.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/MyFirstMauiApp/UseRestService/Platforms/Android/MainActivity.cs b/MyFirstMauiApp/UseRestService/Platforms/Android/MainActivity.cs
new file mode 100644
index 0000000..b5e1fd5
--- /dev/null
+++ b/MyFirstMauiApp/UseRestService/Platforms/Android/MainActivity.cs
@@ -0,0 +1,11 @@
+using Android.App;
+using Android.Content.PM;
+using Android.OS;
+
+namespace UseRestService
+{
+ [Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)]
+ public class MainActivity : MauiAppCompatActivity
+ {
+ }
+}
diff --git a/MyFirstMauiApp/UseRestService/Platforms/Android/MainApplication.cs b/MyFirstMauiApp/UseRestService/Platforms/Android/MainApplication.cs
new file mode 100644
index 0000000..897b4b4
--- /dev/null
+++ b/MyFirstMauiApp/UseRestService/Platforms/Android/MainApplication.cs
@@ -0,0 +1,16 @@
+using Android.App;
+using Android.Runtime;
+
+namespace UseRestService
+{
+ [Application]
+ public class MainApplication : MauiApplication
+ {
+ public MainApplication(IntPtr handle, JniHandleOwnership ownership)
+ : base(handle, ownership)
+ {
+ }
+
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
diff --git a/MyFirstMauiApp/UseRestService/Platforms/Android/Resources/values/colors.xml b/MyFirstMauiApp/UseRestService/Platforms/Android/Resources/values/colors.xml
new file mode 100644
index 0000000..c04d749
--- /dev/null
+++ b/MyFirstMauiApp/UseRestService/Platforms/Android/Resources/values/colors.xml
@@ -0,0 +1,6 @@
+
+
+ #512BD4
+ #2B0B98
+ #2B0B98
+
\ No newline at end of file
diff --git a/MyFirstMauiApp/UseRestService/Platforms/MacCatalyst/AppDelegate.cs b/MyFirstMauiApp/UseRestService/Platforms/MacCatalyst/AppDelegate.cs
new file mode 100644
index 0000000..01ce999
--- /dev/null
+++ b/MyFirstMauiApp/UseRestService/Platforms/MacCatalyst/AppDelegate.cs
@@ -0,0 +1,10 @@
+using Foundation;
+
+namespace UseRestService
+{
+ [Register("AppDelegate")]
+ public class AppDelegate : MauiUIApplicationDelegate
+ {
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
diff --git a/MyFirstMauiApp/UseRestService/Platforms/MacCatalyst/Info.plist b/MyFirstMauiApp/UseRestService/Platforms/MacCatalyst/Info.plist
new file mode 100644
index 0000000..c96dd0a
--- /dev/null
+++ b/MyFirstMauiApp/UseRestService/Platforms/MacCatalyst/Info.plist
@@ -0,0 +1,30 @@
+
+
+
+
+ UIDeviceFamily
+
+ 1
+ 2
+
+ UIRequiredDeviceCapabilities
+
+ arm64
+
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ XSAppIconAssets
+ Assets.xcassets/appicon.appiconset
+
+
diff --git a/MyFirstMauiApp/UseRestService/Platforms/MacCatalyst/Program.cs b/MyFirstMauiApp/UseRestService/Platforms/MacCatalyst/Program.cs
new file mode 100644
index 0000000..882fdac
--- /dev/null
+++ b/MyFirstMauiApp/UseRestService/Platforms/MacCatalyst/Program.cs
@@ -0,0 +1,16 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace UseRestService
+{
+ public class Program
+ {
+ // This is the main entry point of the application.
+ static void Main(string[] args)
+ {
+ // if you want to use a different Application Delegate class from "AppDelegate"
+ // you can specify it here.
+ UIApplication.Main(args, null, typeof(AppDelegate));
+ }
+ }
+}
diff --git a/MyFirstMauiApp/UseRestService/Platforms/Tizen/Main.cs b/MyFirstMauiApp/UseRestService/Platforms/Tizen/Main.cs
new file mode 100644
index 0000000..812b9d5
--- /dev/null
+++ b/MyFirstMauiApp/UseRestService/Platforms/Tizen/Main.cs
@@ -0,0 +1,17 @@
+using Microsoft.Maui;
+using Microsoft.Maui.Hosting;
+using System;
+
+namespace UseRestService
+{
+ internal class Program : MauiApplication
+ {
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+
+ static void Main(string[] args)
+ {
+ var app = new Program();
+ app.Run(args);
+ }
+ }
+}
diff --git a/MyFirstMauiApp/UseRestService/Platforms/Tizen/tizen-manifest.xml b/MyFirstMauiApp/UseRestService/Platforms/Tizen/tizen-manifest.xml
new file mode 100644
index 0000000..2e27ce8
--- /dev/null
+++ b/MyFirstMauiApp/UseRestService/Platforms/Tizen/tizen-manifest.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+ maui-appicon-placeholder
+
+
+
+
+ http://tizen.org/privilege/internet
+
+
+
+
\ No newline at end of file
diff --git a/MyFirstMauiApp/UseRestService/Platforms/Windows/App.xaml b/MyFirstMauiApp/UseRestService/Platforms/Windows/App.xaml
new file mode 100644
index 0000000..2e44d49
--- /dev/null
+++ b/MyFirstMauiApp/UseRestService/Platforms/Windows/App.xaml
@@ -0,0 +1,8 @@
+
+
+
diff --git a/MyFirstMauiApp/UseRestService/Platforms/Windows/App.xaml.cs b/MyFirstMauiApp/UseRestService/Platforms/Windows/App.xaml.cs
new file mode 100644
index 0000000..6238ead
--- /dev/null
+++ b/MyFirstMauiApp/UseRestService/Platforms/Windows/App.xaml.cs
@@ -0,0 +1,25 @@
+using Microsoft.UI.Xaml;
+
+// To learn more about WinUI, the WinUI project structure,
+// and more about our project templates, see: http://aka.ms/winui-project-info.
+
+namespace UseRestService.WinUI
+{
+ ///
+ /// Provides application-specific behavior to supplement the default Application class.
+ ///
+ public partial class App : MauiWinUIApplication
+ {
+ ///
+ /// Initializes the singleton application object. This is the first line of authored code
+ /// executed, and as such is the logical equivalent of main() or WinMain().
+ ///
+ public App()
+ {
+ this.InitializeComponent();
+ }
+
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+
+}
diff --git a/MyFirstMauiApp/UseRestService/Platforms/Windows/Package.appxmanifest b/MyFirstMauiApp/UseRestService/Platforms/Windows/Package.appxmanifest
new file mode 100644
index 0000000..4c05cc2
--- /dev/null
+++ b/MyFirstMauiApp/UseRestService/Platforms/Windows/Package.appxmanifest
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+ $placeholder$
+ User Name
+ $placeholder$.png
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/MyFirstMauiApp/UseRestService/Platforms/Windows/app.manifest b/MyFirstMauiApp/UseRestService/Platforms/Windows/app.manifest
new file mode 100644
index 0000000..c4f0748
--- /dev/null
+++ b/MyFirstMauiApp/UseRestService/Platforms/Windows/app.manifest
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+ true/PM
+ PerMonitorV2, PerMonitor
+
+
+
diff --git a/MyFirstMauiApp/UseRestService/Platforms/iOS/AppDelegate.cs b/MyFirstMauiApp/UseRestService/Platforms/iOS/AppDelegate.cs
new file mode 100644
index 0000000..01ce999
--- /dev/null
+++ b/MyFirstMauiApp/UseRestService/Platforms/iOS/AppDelegate.cs
@@ -0,0 +1,10 @@
+using Foundation;
+
+namespace UseRestService
+{
+ [Register("AppDelegate")]
+ public class AppDelegate : MauiUIApplicationDelegate
+ {
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
diff --git a/MyFirstMauiApp/UseRestService/Platforms/iOS/Info.plist b/MyFirstMauiApp/UseRestService/Platforms/iOS/Info.plist
new file mode 100644
index 0000000..0004a4f
--- /dev/null
+++ b/MyFirstMauiApp/UseRestService/Platforms/iOS/Info.plist
@@ -0,0 +1,32 @@
+
+
+
+
+ LSRequiresIPhoneOS
+
+ UIDeviceFamily
+
+ 1
+ 2
+
+ UIRequiredDeviceCapabilities
+
+ arm64
+
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ XSAppIconAssets
+ Assets.xcassets/appicon.appiconset
+
+
diff --git a/MyFirstMauiApp/UseRestService/Platforms/iOS/Program.cs b/MyFirstMauiApp/UseRestService/Platforms/iOS/Program.cs
new file mode 100644
index 0000000..882fdac
--- /dev/null
+++ b/MyFirstMauiApp/UseRestService/Platforms/iOS/Program.cs
@@ -0,0 +1,16 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace UseRestService
+{
+ public class Program
+ {
+ // This is the main entry point of the application.
+ static void Main(string[] args)
+ {
+ // if you want to use a different Application Delegate class from "AppDelegate"
+ // you can specify it here.
+ UIApplication.Main(args, null, typeof(AppDelegate));
+ }
+ }
+}
diff --git a/MyFirstMauiApp/UseRestService/Properties/launchSettings.json b/MyFirstMauiApp/UseRestService/Properties/launchSettings.json
new file mode 100644
index 0000000..edf8aad
--- /dev/null
+++ b/MyFirstMauiApp/UseRestService/Properties/launchSettings.json
@@ -0,0 +1,8 @@
+{
+ "profiles": {
+ "Windows Machine": {
+ "commandName": "MsixPackage",
+ "nativeDebugging": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/MyFirstMauiApp/UseRestService/Resources/AppIcon/appicon.svg b/MyFirstMauiApp/UseRestService/Resources/AppIcon/appicon.svg
new file mode 100644
index 0000000..9d63b65
--- /dev/null
+++ b/MyFirstMauiApp/UseRestService/Resources/AppIcon/appicon.svg
@@ -0,0 +1,4 @@
+
+
\ No newline at end of file
diff --git a/MyFirstMauiApp/UseRestService/Resources/AppIcon/appiconfg.svg b/MyFirstMauiApp/UseRestService/Resources/AppIcon/appiconfg.svg
new file mode 100644
index 0000000..21dfb25
--- /dev/null
+++ b/MyFirstMauiApp/UseRestService/Resources/AppIcon/appiconfg.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/MyFirstMauiApp/UseRestService/Resources/Fonts/OpenSans-Regular.ttf b/MyFirstMauiApp/UseRestService/Resources/Fonts/OpenSans-Regular.ttf
new file mode 100644
index 0000000..dadcb01
Binary files /dev/null and b/MyFirstMauiApp/UseRestService/Resources/Fonts/OpenSans-Regular.ttf differ
diff --git a/MyFirstMauiApp/UseRestService/Resources/Fonts/OpenSans-Semibold.ttf b/MyFirstMauiApp/UseRestService/Resources/Fonts/OpenSans-Semibold.ttf
new file mode 100644
index 0000000..5601642
Binary files /dev/null and b/MyFirstMauiApp/UseRestService/Resources/Fonts/OpenSans-Semibold.ttf differ
diff --git a/MyFirstMauiApp/UseRestService/Resources/Images/dotnet_bot.svg b/MyFirstMauiApp/UseRestService/Resources/Images/dotnet_bot.svg
new file mode 100644
index 0000000..abfaff2
--- /dev/null
+++ b/MyFirstMauiApp/UseRestService/Resources/Images/dotnet_bot.svg
@@ -0,0 +1,93 @@
+
diff --git a/MyFirstMauiApp/UseRestService/Resources/Raw/AboutAssets.txt b/MyFirstMauiApp/UseRestService/Resources/Raw/AboutAssets.txt
new file mode 100644
index 0000000..15d6244
--- /dev/null
+++ b/MyFirstMauiApp/UseRestService/Resources/Raw/AboutAssets.txt
@@ -0,0 +1,15 @@
+Any raw assets you want to be deployed with your application can be placed in
+this directory (and child directories). Deployment of the asset to your application
+is automatically handled by the following `MauiAsset` Build Action within your `.csproj`.
+
+
+
+These files will be deployed with you package and will be accessible using Essentials:
+
+ async Task LoadMauiAsset()
+ {
+ using var stream = await FileSystem.OpenAppPackageFileAsync("AboutAssets.txt");
+ using var reader = new StreamReader(stream);
+
+ var contents = reader.ReadToEnd();
+ }
diff --git a/MyFirstMauiApp/UseRestService/Resources/Splash/splash.svg b/MyFirstMauiApp/UseRestService/Resources/Splash/splash.svg
new file mode 100644
index 0000000..21dfb25
--- /dev/null
+++ b/MyFirstMauiApp/UseRestService/Resources/Splash/splash.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/MyFirstMauiApp/UseRestService/Resources/Styles/Colors.xaml b/MyFirstMauiApp/UseRestService/Resources/Styles/Colors.xaml
new file mode 100644
index 0000000..245758b
--- /dev/null
+++ b/MyFirstMauiApp/UseRestService/Resources/Styles/Colors.xaml
@@ -0,0 +1,44 @@
+
+
+
+
+ #512BD4
+ #DFD8F7
+ #2B0B98
+ White
+ Black
+ #E1E1E1
+ #C8C8C8
+ #ACACAC
+ #919191
+ #6E6E6E
+ #404040
+ #212121
+ #141414
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ #F7B548
+ #FFD590
+ #FFE5B9
+ #28C2D1
+ #7BDDEF
+ #C3F2F4
+ #3E8EED
+ #72ACF1
+ #A7CBF6
+
+
\ No newline at end of file
diff --git a/MyFirstMauiApp/UseRestService/Resources/Styles/Styles.xaml b/MyFirstMauiApp/UseRestService/Resources/Styles/Styles.xaml
new file mode 100644
index 0000000..dc4a034
--- /dev/null
+++ b/MyFirstMauiApp/UseRestService/Resources/Styles/Styles.xaml
@@ -0,0 +1,405 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/MyFirstMauiApp/UseRestService/UseRestService.csproj b/MyFirstMauiApp/UseRestService/UseRestService.csproj
new file mode 100644
index 0000000..16f7252
--- /dev/null
+++ b/MyFirstMauiApp/UseRestService/UseRestService.csproj
@@ -0,0 +1,62 @@
+
+
+
+ net7.0-android;net7.0-ios;net7.0-maccatalyst
+ $(TargetFrameworks);net7.0-windows10.0.19041.0
+
+
+ Exe
+ UseRestService
+ true
+ true
+ enable
+
+
+ UseRestService
+
+
+ com.companyname.userestservice
+ 0f652fc5-9840-4102-985f-6e24fbdd3a14
+
+
+ 1.0
+ 1
+
+ 11.0
+ 13.1
+ 21.0
+ 10.0.17763.0
+ 10.0.17763.0
+ 6.5
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ MSBuild:Compile
+
+
+
+
diff --git a/MyFirstMauiApp/UseRestService/ViewModels/PartsViewModel.cs b/MyFirstMauiApp/UseRestService/ViewModels/PartsViewModel.cs
new file mode 100644
index 0000000..f3a1cd9
--- /dev/null
+++ b/MyFirstMauiApp/UseRestService/ViewModels/PartsViewModel.cs
@@ -0,0 +1,13 @@
+using CommunityToolkit.Mvvm.ComponentModel;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace UseRestService.ViewModels
+{
+ internal class PartsViewModel : ObservableObject
+ {
+ }
+}