aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/ViewModels/RmlDeleteDialogViewVM.cs
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2021-05-12 15:20:57 +0300
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2021-05-12 15:20:57 +0300
commit5c1649221047dd4fe3d8de124f21a878a3e4b555 (patch)
treeb55bf8dd4d1a000162313224aa787ca253559bdd /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/ViewModels/RmlDeleteDialogViewVM.cs
parent896c8152facdee8e78f54d3dfdf324e7415173ba (diff)
downloadTango-5c1649221047dd4fe3d8de124f21a878a3e4b555.tar.gz
Tango-5c1649221047dd4fe3d8de124f21a878a3e4b555.zip
RML module and Machine designer lists performance improvements !
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/ViewModels/RmlDeleteDialogViewVM.cs')
-rw-r--r--Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/ViewModels/RmlDeleteDialogViewVM.cs9
1 files changed, 5 insertions, 4 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/ViewModels/RmlDeleteDialogViewVM.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/ViewModels/RmlDeleteDialogViewVM.cs
index b4c6c6274..ed3ddae5b 100644
--- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/ViewModels/RmlDeleteDialogViewVM.cs
+++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/ViewModels/RmlDeleteDialogViewVM.cs
@@ -5,6 +5,7 @@ using System.Text;
using System.Threading.Tasks;
using Tango.BL.Entities;
using Tango.Core;
+using Tango.MachineStudio.RML.Models;
using Tango.SharedUI;
namespace Tango.MachineStudio.RML.ViewModels
@@ -35,7 +36,7 @@ namespace Tango.MachineStudio.RML.ViewModels
}
- public Rml TargetRml { get; set; }
+ public RmlModel TargetRml { get; set; }
public override string ToString()
{
@@ -52,13 +53,13 @@ namespace Tango.MachineStudio.RML.ViewModels
set { _jobsActions = value; RaisePropertyChangedAuto(); }
}
- public Rml Rml { get; set; }
+ public RmlModel Rml { get; set; }
- public List<Rml> Rmls { get; set; }
+ public List<RmlModel> Rmls { get; set; }
public List<RmlDeleteJobAction> Actions { get; set; }
- public RmlDeleteDialogViewVM(Rml rml, List<Rml> rmls, List<Job> jobsToDelete)
+ public RmlDeleteDialogViewVM(RmlModel rml, List<RmlModel> rmls, List<Job> jobsToDelete)
{
Rml = rml;
Rmls = rmls.Where(x => x.Guid != rml.Guid).ToList();