diff options
| author | Roy <roy.mail.net@gmail.com> | 2017-12-16 13:40:12 +0200 |
|---|---|---|
| committer | Roy <roy.mail.net@gmail.com> | 2017-12-16 13:40:12 +0200 |
| commit | 5cc13a65395796698f1cbb9acb543cf9d3d3a44e (patch) | |
| tree | fd344ed72ec7211a095768edcabdffa27cc77071 /Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/ExtensionMethods | |
| parent | 80f31756eb8c833e16724ce11ce42f3e86c78fc1 (diff) | |
| download | Tango-5cc13a65395796698f1cbb9acb543cf9d3d3a44e.tar.gz Tango-5cc13a65395796698f1cbb9acb543cf9d3d3a44e.zip | |
Added some tables to DB module.
Implemented custom side bar for entity editing.
Implemented auto save of last user email and password.
Implemented cryptography on Core.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/ExtensionMethods')
| -rw-r--r-- | Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/ExtensionMethods/IStudioMessageExtensions.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/ExtensionMethods/IStudioMessageExtensions.cs b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/ExtensionMethods/IStudioMessageExtensions.cs new file mode 100644 index 000000000..83183f328 --- /dev/null +++ b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/ExtensionMethods/IStudioMessageExtensions.cs @@ -0,0 +1,15 @@ +using GalaSoft.MvvmLight.Messaging; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Tango.MachineStudio.Common.Messages; + +public static class IStudioMessageExtensions +{ + public static void Send(this IStudioMessage message) + { + Messenger.Default.Send(message); + } +} |
