From 240fc978fb3327ff7e5bc0c7a06e1b8cc8de4aca Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Mon, 19 Feb 2018 18:09:36 +0200 Subject: Working Developer Module... --- .../Converters/DbRmlViewToEntityConverter.cs | 38 ---------------------- 1 file changed, 38 deletions(-) delete mode 100644 Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Converters/DbRmlViewToEntityConverter.cs (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Converters') diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Converters/DbRmlViewToEntityConverter.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Converters/DbRmlViewToEntityConverter.cs deleted file mode 100644 index 1fe3e5ab0..000000000 --- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Converters/DbRmlViewToEntityConverter.cs +++ /dev/null @@ -1,38 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Globalization; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Data; -using Tango.Integration.Observables; -using Tango.MachineStudio.Developer.ViewModels; - -namespace Tango.MachineStudio.Developer.Converters -{ - public class DbRmlViewToEntityConverter : IValueConverter - { - public object Convert(object value, Type targetType, object parameter, CultureInfo culture) - { - if (value != null) - { - DBViewContextWrapper db = value as DBViewContextWrapper; - return db; - } - - return null; - - } - - public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) - { - if (value != null) - { - Rml entity = value as Rml; - return new DBViewContextWrapper(entity); - } - - return null; - } - } -} -- cgit v1.3.1