diff --git a/Borepin/Borepin.Android/Borepin.Android.csproj b/Borepin/Borepin.Android/Borepin.Android.csproj
index 3dd24cb..6ddc1c0 100644
--- a/Borepin/Borepin.Android/Borepin.Android.csproj
+++ b/Borepin/Borepin.Android/Borepin.Android.csproj
@@ -76,11 +76,7 @@
-
-
-
-
diff --git a/Borepin/Borepin.Android/Services/APIBindedService.cs b/Borepin/Borepin.Android/Services/APIBindedService.cs
deleted file mode 100644
index e84859c..0000000
--- a/Borepin/Borepin.Android/Services/APIBindedService.cs
+++ /dev/null
@@ -1,50 +0,0 @@
-using Android.App;
-using Android.Content;
-using Android.OS;
-using FabAccessAPI;
-
-namespace Borepin.Droid.Services
-{
- [Service(Name= "org.fab_infra.fabaccess.APIService")]
- public class APIBindedService : Android.App.Service
- {
- #region Private Members
- private IAPI _API;
- #endregion
-
- #region Members
- public IBinder Binder { get; private set; }
- #endregion
-
- #region Methods
- public IAPI GetAPI()
- {
- return _API;
- }
-
- public override void OnCreate()
- {
- base.OnCreate();
- _API = new API();
- }
-
- public override IBinder OnBind(Intent intent)
- {
- Binder = new APIBinder(this);
- return Binder;
- }
-
- public override bool OnUnbind(Intent intent)
- {
- return base.OnUnbind(intent);
- }
-
- public override void OnDestroy()
- {
- Binder = null;
- _API = null;
- base.OnDestroy();
- }
- #endregion
- }
-}
\ No newline at end of file
diff --git a/Borepin/Borepin.Android/Services/APIBinder.cs b/Borepin/Borepin.Android/Services/APIBinder.cs
deleted file mode 100644
index 5deeb3b..0000000
--- a/Borepin/Borepin.Android/Services/APIBinder.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-using Android.OS;
-
-namespace Borepin.Droid.Services
-{
- public class APIBinder : Binder
- {
- #region Constructors
- public APIBinder(APIBindedService service)
- {
- Service = service;
- }
- #endregion
-
- #region Members
- public APIBindedService Service { get; private set; }
- #endregion
- }
-}
\ No newline at end of file
diff --git a/Borepin/Borepin.Android/Services/APIServiceConnection.cs b/Borepin/Borepin.Android/Services/APIServiceConnection.cs
deleted file mode 100644
index 319d008..0000000
--- a/Borepin/Borepin.Android/Services/APIServiceConnection.cs
+++ /dev/null
@@ -1,32 +0,0 @@
-using Android.Content;
-using Android.OS;
-using FabAccessAPI;
-
-namespace Borepin.Droid.Services
-{
- class APIServiceConnection : Java.Lang.Object, IServiceConnection
- {
- #region Members
- public bool IsConnected
- {
- get
- {
- return Binder != null;
- }
- }
- public APIBinder Binder { get; private set; } = null;
- #endregion
-
- #region Methods
- public void OnServiceConnected(ComponentName name, IBinder service)
- {
- Binder = service as APIBinder;
- }
-
- public void OnServiceDisconnected(ComponentName name)
- {
- Binder = null;
- }
- #endregion
- }
-}
\ No newline at end of file
diff --git a/Borepin/Borepin.Android/Services/APIService_New.cs b/Borepin/Borepin.Android/Services/APIService_New.cs
deleted file mode 100644
index 1defae9..0000000
--- a/Borepin/Borepin.Android/Services/APIService_New.cs
+++ /dev/null
@@ -1,28 +0,0 @@
-using Android.App;
-using Android.Content;
-using Borepin.Service;
-using FabAccessAPI;
-
-namespace Borepin.Droid.Services
-{
- public class APIService_New : IAPIService
- {
- #region Private Members
- private readonly APIServiceConnection _APIServiceConnection;
- #endregion
-
- #region Constructors
- public APIService_New()
- {
- Context context = Application.Context;
- Intent service = new Intent(context, typeof(APIBindedService));
- context.BindService(service, _APIServiceConnection, Bind.AutoCreate);
- }
- #endregion
-
- public IAPI GetAPI()
- {
- return _APIServiceConnection?.Binder?.Service?.GetAPI();
- }
- }
-}
\ No newline at end of file
diff --git a/Borepin/Borepin/App.xaml.cs b/Borepin/Borepin/App.xaml.cs
index 0ef9f00..0398942 100644
--- a/Borepin/Borepin/App.xaml.cs
+++ b/Borepin/Borepin/App.xaml.cs
@@ -65,7 +65,6 @@ namespace Borepin
#region Register Dialog
containerRegistry.RegisterDialog();
- containerRegistry.RegisterDialog();
#endregion
#region Register Service
diff --git a/Borepin/Borepin/Borepin.csproj b/Borepin/Borepin/Borepin.csproj
index a5f7eac..69ae925 100644
--- a/Borepin/Borepin/Borepin.csproj
+++ b/Borepin/Borepin/Borepin.csproj
@@ -99,9 +99,6 @@
MSBuild:UpdateDesignTimeXaml
-
- MSBuild:UpdateDesignTimeXaml
-
MSBuild:UpdateDesignTimeXaml
diff --git a/Borepin/Borepin/Dialog/ScanDialog.xaml b/Borepin/Borepin/Dialog/ScanDialog.xaml
deleted file mode 100644
index ff01a42..0000000
--- a/Borepin/Borepin/Dialog/ScanDialog.xaml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Borepin/Borepin/Dialog/ScanDialog.xaml.cs b/Borepin/Borepin/Dialog/ScanDialog.xaml.cs
deleted file mode 100644
index e70fb4b..0000000
--- a/Borepin/Borepin/Dialog/ScanDialog.xaml.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-using Xamarin.Forms;
-using Xamarin.Forms.Xaml;
-
-namespace Borepin.Dialog
-{
- [XamlCompilation(XamlCompilationOptions.Compile)]
- public partial class ScanDialog : ContentView
- {
- public ScanDialog()
- {
- InitializeComponent();
- }
- }
-}
\ No newline at end of file
diff --git a/Borepin/Borepin/DialogModel/ScanDialogModel.cs b/Borepin/Borepin/DialogModel/ScanDialogModel.cs
deleted file mode 100644
index 0543b8e..0000000
--- a/Borepin/Borepin/DialogModel/ScanDialogModel.cs
+++ /dev/null
@@ -1,111 +0,0 @@
-using Prism.Commands;
-using Prism.Mvvm;
-using Prism.Services.Dialogs;
-using System;
-using System.Windows.Input;
-using ZXing;
-
-namespace Borepin.DialogModel
-{
- public class ScanDialogModel : BindableBase, IDialogAware
- {
- #region Private Fields
- private object _Instance;
- #endregion
-
- #region Constructors
- public ScanDialogModel()
- {
- AbortCommand = new DelegateCommand(AbortCommandExecute);
- ScannedCommand = new DelegateCommand(ScannedCommandExecute);
-
- IsVisible = true;
- IsScanning = true;
- }
- #endregion
-
- #region Fields
- public event Action RequestClose;
-
- public bool CanCloseDialog()
- {
- return true;
- }
-
- private Result _ScanResult;
- public Result ScanResult
- {
- get => _ScanResult;
- set => SetProperty(ref _ScanResult, value);
- }
-
- private bool _IsScanning;
- public bool IsScanning
- {
- get => _IsScanning;
- set => SetProperty(ref _IsScanning, value);
- }
-
- private bool _IsVisible;
- public bool IsVisible
- {
- get => _IsVisible;
- set => SetProperty(ref _IsVisible, value);
- }
- #endregion
-
- #region Commands
- private ICommand _ScannedCommand;
-
- public ICommand ScannedCommand
- {
- get => _ScannedCommand;
- set => SetProperty(ref _ScannedCommand, value);
- }
- public void ScannedCommandExecute()
- {
- IsScanning = false;
- IsVisible = false;
-
- IDialogParameters parameters = new DialogParameters()
- {
- { "result", "scanned" },
- { "value", ScanResult.Text },
- { "instance", _Instance },
- };
- RequestClose(parameters);
- }
-
- private ICommand _AbortCommand;
- public ICommand AbortCommand
- {
- get => _AbortCommand;
- set => SetProperty(ref _AbortCommand, value);
- }
- public void AbortCommandExecute()
- {
- IsScanning = false;
- IsVisible = false;
-
- IDialogParameters parameters = new DialogParameters()
- {
- { "result", "abort" },
- { "instance", _Instance },
- };
- RequestClose(parameters);
- }
- #endregion
-
- #region IDialogAware
- public void OnDialogClosed()
- {
-
- }
-
- public void OnDialogOpened(IDialogParameters parameters)
- {
- _Instance = parameters.GetValue