diff --git a/Audit.csproj b/Audit.csproj new file mode 100644 index 0000000..f165b74 --- /dev/null +++ b/Audit.csproj @@ -0,0 +1,163 @@ + + + + + Debug + AnyCPU + {43516CC3-DB11-401F-AC40-94676C508BB9} + WinExe + Audit + Audit + v4.8 + 512 + {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + 4 + true + true + + + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + Audit.App + + + + packages\CommonServiceLocator.2.0.6\lib\net48\CommonServiceLocator.dll + + + packages\ControlzEx.4.4.0\lib\net462\ControlzEx.dll + + + packages\EntityFramework.6.2.0\lib\net45\EntityFramework.dll + + + packages\EntityFramework.6.2.0\lib\net45\EntityFramework.SqlServer.dll + + + packages\MvvmLightLibs.5.4.1.1\lib\net45\GalaSoft.MvvmLight.dll + + + packages\MvvmLightLibs.5.4.1.1\lib\net45\GalaSoft.MvvmLight.Extras.dll + + + packages\MvvmLightLibs.5.4.1.1\lib\net45\GalaSoft.MvvmLight.Platform.dll + + + packages\MahApps.Metro.2.4.9\lib\net47\MahApps.Metro.dll + + + packages\Microsoft.Xaml.Behaviors.Wpf.1.1.19\lib\net45\Microsoft.Xaml.Behaviors.dll + + + + + + + + + + + packages\MvvmLightLibs.5.4.1.1\lib\net45\System.Windows.Interactivity.dll + + + + + + + + + 4.0 + + + + + + + + MSBuild:Compile + Designer + + + + + + + LogWindow.xaml + + + MSBuild:Compile + Designer + + + App.xaml + Code + + + MainWindow.xaml + Code + + + Designer + MSBuild:Compile + + + + + Code + + + True + True + Resources.resx + + + True + Settings.settings + True + + + ResXFileCodeGenerator + Resources.Designer.cs + + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + + + + + + + + + + + + {2B23C1BD-0231-4F0C-A142-A220C75FFE5B} + Models + + + + \ No newline at end of file diff --git a/AuditData.cs b/AuditData.cs new file mode 100644 index 0000000..9975fb1 --- /dev/null +++ b/AuditData.cs @@ -0,0 +1,21 @@ +using GalaSoft.MvvmLight; +using Models; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Audit +{ + public class AuditData : ObservableObject + { + private UserAccount useraccount = null; + + public UserAccount UserAccount + { + get { return useraccount; } + set { useraccount = value; RaisePropertyChanged("UserAccount");} + } + } +} diff --git a/ViewModel/LogViewModel.cs b/ViewModel/LogViewModel.cs new file mode 100644 index 0000000..0f0c8f8 --- /dev/null +++ b/ViewModel/LogViewModel.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Audit.ViewModel +{ + internal class LogViewModel + { + } +}