diff --git a/PartSource.Backoffice/App.xaml b/PartSource.Backoffice/App.xaml
deleted file mode 100644
index db7a790..0000000
--- a/PartSource.Backoffice/App.xaml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
diff --git a/PartSource.Backoffice/App.xaml.cs b/PartSource.Backoffice/App.xaml.cs
deleted file mode 100644
index 5c05ff2..0000000
--- a/PartSource.Backoffice/App.xaml.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Configuration;
-using System.Data;
-using System.Linq;
-using System.Threading.Tasks;
-using System.Windows;
-
-namespace PartSource.Backoffice
-{
- ///
- /// Interaction logic for App.xaml
- ///
- public partial class App : Application
- {
- }
-}
diff --git a/PartSource.Backoffice/AssemblyInfo.cs b/PartSource.Backoffice/AssemblyInfo.cs
deleted file mode 100644
index 427f202..0000000
--- a/PartSource.Backoffice/AssemblyInfo.cs
+++ /dev/null
@@ -1,10 +0,0 @@
-using System.Windows;
-
-[assembly: ThemeInfo(
- ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
- //(used if a resource is not found in the page,
- // or application resource dictionaries)
- ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
- //(used if a resource is not found in the page,
- // app, or any theme specific resource dictionaries)
-)]
diff --git a/PartSource.Backoffice/Components/MenuBar.xaml b/PartSource.Backoffice/Components/MenuBar.xaml
deleted file mode 100644
index b42c8ae..0000000
--- a/PartSource.Backoffice/Components/MenuBar.xaml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
-
-
diff --git a/PartSource.Backoffice/Components/MenuBar.xaml.cs b/PartSource.Backoffice/Components/MenuBar.xaml.cs
deleted file mode 100644
index 953b933..0000000
--- a/PartSource.Backoffice/Components/MenuBar.xaml.cs
+++ /dev/null
@@ -1,33 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Text;
-using System.Windows;
-using System.Windows.Controls;
-using System.Windows.Data;
-using System.Windows.Documents;
-using System.Windows.Input;
-using System.Windows.Media;
-using System.Windows.Media.Imaging;
-using System.Windows.Navigation;
-using System.Windows.Shapes;
-
-namespace PartSource.Backoffice.Components
-{
- ///
- /// Interaction logic for MenuBar.xaml
- ///
- public partial class MenuBar : UserControl
- {
- public MenuBar()
- {
- InitializeComponent();
- }
-
- private void MenuItem_Click(object sender, RoutedEventArgs e)
- {
- // TODO: Check if any tasks are running
-
- Application.Current.MainWindow.Close();
- }
- }
-}
diff --git a/PartSource.Backoffice/Components/ProgressDisplay.xaml b/PartSource.Backoffice/Components/ProgressDisplay.xaml
deleted file mode 100644
index 3d818e2..0000000
--- a/PartSource.Backoffice/Components/ProgressDisplay.xaml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
- Current Operation:
-
-
-
-
-
-
diff --git a/PartSource.Backoffice/Components/ProgressDisplay.xaml.cs b/PartSource.Backoffice/Components/ProgressDisplay.xaml.cs
deleted file mode 100644
index 754db5d..0000000
--- a/PartSource.Backoffice/Components/ProgressDisplay.xaml.cs
+++ /dev/null
@@ -1,26 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Text;
-using System.Windows;
-using System.Windows.Controls;
-using System.Windows.Data;
-using System.Windows.Documents;
-using System.Windows.Input;
-using System.Windows.Media;
-using System.Windows.Media.Imaging;
-using System.Windows.Navigation;
-using System.Windows.Shapes;
-
-namespace PartSource.Backoffice.Components
-{
- ///
- /// Interaction logic for StatusBars.xaml
- ///
- public partial class ProgressDisplay : UserControl
- {
- public ProgressDisplay()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/PartSource.Backoffice/Components/TaskSetup.xaml b/PartSource.Backoffice/Components/TaskSetup.xaml
deleted file mode 100644
index 0180e51..0000000
--- a/PartSource.Backoffice/Components/TaskSetup.xaml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
- Metafield Groups:
-
-
-
-
diff --git a/PartSource.Backoffice/Components/TaskSetup.xaml.cs b/PartSource.Backoffice/Components/TaskSetup.xaml.cs
deleted file mode 100644
index 4c3ba81..0000000
--- a/PartSource.Backoffice/Components/TaskSetup.xaml.cs
+++ /dev/null
@@ -1,50 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Text;
-using System.Windows;
-using System.Windows.Controls;
-using System.Windows.Data;
-using System.Windows.Documents;
-using System.Windows.Input;
-using System.Windows.Media;
-using System.Windows.Media.Imaging;
-using System.Windows.Navigation;
-using System.Windows.Shapes;
-
-namespace PartSource.Backoffice.Components
-{
- ///
- /// Interaction logic for TaskSetup.xaml
- ///
- public partial class TaskSetup : UserControl
- {
- public IList SelectedTasks
- {
- get
- {
- IList selectedTasks = new List();
-
- foreach (object control in ContentPanel.Children)
- {
- switch (control)
- {
- case CheckBox checkbox:
- if (checkbox.IsChecked.GetValueOrDefault())
- {
- selectedTasks.Add(checkbox.Name);
- }
-
- break;
- }
- }
-
- return selectedTasks;
- }
- }
-
- public TaskSetup()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/PartSource.Backoffice/MainWindow.xaml b/PartSource.Backoffice/MainWindow.xaml
deleted file mode 100644
index e93a7a7..0000000
--- a/PartSource.Backoffice/MainWindow.xaml
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/PartSource.Backoffice/MainWindow.xaml.cs b/PartSource.Backoffice/MainWindow.xaml.cs
deleted file mode 100644
index 34e360c..0000000
--- a/PartSource.Backoffice/MainWindow.xaml.cs
+++ /dev/null
@@ -1,41 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using System.Windows;
-using System.Windows.Controls;
-using System.Windows.Data;
-using System.Windows.Documents;
-using System.Windows.Input;
-using System.Windows.Media;
-using System.Windows.Media.Imaging;
-using System.Windows.Navigation;
-using System.Windows.Shapes;
-
-namespace PartSource.Backoffice
-{
- ///
- /// Interaction logic for MainWindow.xaml
- ///
- public partial class MainWindow : Window
- {
- public MainWindow()
- {
- InitializeComponent();
- }
-
- private void Update_Click(object sender, RoutedEventArgs e)
- {
- if (TaskSetup.SelectedTasks.Count > 0)
- {
-
- }
-
- else
- {
- MessageBox.Show("Select one or more metafield groups to continue.");
- }
- }
- }
-}
diff --git a/PartSource.Backoffice/PartSource.Backoffice.csproj b/PartSource.Backoffice/PartSource.Backoffice.csproj
deleted file mode 100644
index 6c68d0e..0000000
--- a/PartSource.Backoffice/PartSource.Backoffice.csproj
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
- WinExe
- netcoreapp3.1
- true
-
-
-
\ No newline at end of file
diff --git a/PartSource.Backoffice/Services/FtpService.cs b/PartSource.Backoffice/Services/FtpService.cs
deleted file mode 100644
index a76da6e..0000000
--- a/PartSource.Backoffice/Services/FtpService.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-using System;
-using System.IO;
-using System.Net;
-
-namespace PartSource.Backoffice.Services
-{
- public class FtpService
- {
- public void Download(string filename)
- {
- //FtpWebRequest request = (FtpWebRequest)WebRequest.Create($"{_ftpConfiguration.Url}/{filename}");
- //request.Credentials = new NetworkCredential(_ftpConfiguration.Username, _ftpConfiguration.Password);
- //request.Method = WebRequestMethods.Ftp.DownloadFile;
-
- //using FtpWebResponse response = (FtpWebResponse)request.GetResponse();
- //using Stream responseStream = response.GetResponseStream();
- //using FileStream fileStream = new FileStream($"%APPDATALOCAL%\\{filename}", FileMode.Create);
-
- //responseStream.CopyTo(fileStream);
- }
- }
-}
diff --git a/PartSource.Backoffice/Services/GZipService.cs b/PartSource.Backoffice/Services/GZipService.cs
deleted file mode 100644
index a3c17fc..0000000
--- a/PartSource.Backoffice/Services/GZipService.cs
+++ /dev/null
@@ -1,30 +0,0 @@
-using System;
-using System.IO;
-using System.IO.Compression;
-
-namespace PartSource.Backoffice.Services
-{
-
- public class GZipService
- {
- public static void Decompress(string path)
- {
- FileInfo fileToDecompress = new FileInfo(path);
-
- using (FileStream originalFileStream = fileToDecompress.OpenRead())
- {
- string currentFileName = fileToDecompress.FullName;
- string newFileName = currentFileName.Remove(currentFileName.Length - fileToDecompress.Extension.Length);
-
- using (FileStream decompressedFileStream = File.Create(newFileName))
- {
- using (GZipStream decompressionStream = new GZipStream(originalFileStream, CompressionMode.Decompress))
- {
- decompressionStream.CopyTo(decompressedFileStream);
- Console.WriteLine($"Decompressed: {fileToDecompress.Name}");
- }
- }
- }
- }
- }
-}
diff --git a/PartSource.Backoffice/Services/TaskService.cs b/PartSource.Backoffice/Services/TaskService.cs
deleted file mode 100644
index 6a15479..0000000
--- a/PartSource.Backoffice/Services/TaskService.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Text;
-
-namespace PartSource.Backoffice.Services
-{
- public class TaskService
- {
- private readonly FtpService _ftpService;
- private readonly GZipService _gzipService;
-
- public TaskService()
- {
- _ftpService = new FtpService();
- _gzipService = new GZipService();
- }
- }
-}
diff --git a/PartSource.sln b/PartSource.sln
index 0a76293..048370a 100644
--- a/PartSource.sln
+++ b/PartSource.sln
@@ -18,8 +18,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
.editorconfig = .editorconfig
EndProjectSection
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PartSource.Backoffice", "PartSource.Backoffice\PartSource.Backoffice.csproj", "{AFC51C34-2E44-4A8A-8311-F98DB7DDA15E}"
-EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Also Debug|Any CPU = Also Debug|Any CPU
@@ -123,24 +121,6 @@ Global
{FDC22085-4C5A-4CCD-B0DB-9D31F90ECE90}.Release|x64.Build.0 = Release|Any CPU
{FDC22085-4C5A-4CCD-B0DB-9D31F90ECE90}.Release|x86.ActiveCfg = Release|Any CPU
{FDC22085-4C5A-4CCD-B0DB-9D31F90ECE90}.Release|x86.Build.0 = Release|Any CPU
- {AFC51C34-2E44-4A8A-8311-F98DB7DDA15E}.Also Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {AFC51C34-2E44-4A8A-8311-F98DB7DDA15E}.Also Debug|Any CPU.Build.0 = Debug|Any CPU
- {AFC51C34-2E44-4A8A-8311-F98DB7DDA15E}.Also Debug|x64.ActiveCfg = Debug|Any CPU
- {AFC51C34-2E44-4A8A-8311-F98DB7DDA15E}.Also Debug|x64.Build.0 = Debug|Any CPU
- {AFC51C34-2E44-4A8A-8311-F98DB7DDA15E}.Also Debug|x86.ActiveCfg = Debug|Any CPU
- {AFC51C34-2E44-4A8A-8311-F98DB7DDA15E}.Also Debug|x86.Build.0 = Debug|Any CPU
- {AFC51C34-2E44-4A8A-8311-F98DB7DDA15E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {AFC51C34-2E44-4A8A-8311-F98DB7DDA15E}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {AFC51C34-2E44-4A8A-8311-F98DB7DDA15E}.Debug|x64.ActiveCfg = Debug|Any CPU
- {AFC51C34-2E44-4A8A-8311-F98DB7DDA15E}.Debug|x64.Build.0 = Debug|Any CPU
- {AFC51C34-2E44-4A8A-8311-F98DB7DDA15E}.Debug|x86.ActiveCfg = Debug|Any CPU
- {AFC51C34-2E44-4A8A-8311-F98DB7DDA15E}.Debug|x86.Build.0 = Debug|Any CPU
- {AFC51C34-2E44-4A8A-8311-F98DB7DDA15E}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {AFC51C34-2E44-4A8A-8311-F98DB7DDA15E}.Release|Any CPU.Build.0 = Release|Any CPU
- {AFC51C34-2E44-4A8A-8311-F98DB7DDA15E}.Release|x64.ActiveCfg = Release|Any CPU
- {AFC51C34-2E44-4A8A-8311-F98DB7DDA15E}.Release|x64.Build.0 = Release|Any CPU
- {AFC51C34-2E44-4A8A-8311-F98DB7DDA15E}.Release|x86.ActiveCfg = Release|Any CPU
- {AFC51C34-2E44-4A8A-8311-F98DB7DDA15E}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE