aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Models/LiquidVolumesCollection.cs
diff options
context:
space:
mode:
authorRoy Ben Shabat <roy.mail.net@gmail.com>2025-09-12 18:02:38 +0300
committerRoy Ben Shabat <roy.mail.net@gmail.com>2025-09-12 18:02:38 +0300
commit9a5f4fde8f1e0fa46c9bf75b9492c57a58249a8a (patch)
tree892424fe173f1ce0182616d543a3fe56748f2d2f /Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Models/LiquidVolumesCollection.cs
parent7eb361c1201381c6ad88efa0ebed2c6595b45d13 (diff)
downloadTango-9a5f4fde8f1e0fa46c9bf75b9492c57a58249a8a.tar.gz
Tango-9a5f4fde8f1e0fa46c9bf75b9492c57a58249a8a.zip
Improved dynamic assignment of catalog item <-> Liquid Volume.
Diffstat (limited to 'Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Models/LiquidVolumesCollection.cs')
-rw-r--r--Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Models/LiquidVolumesCollection.cs6
1 files changed, 0 insertions, 6 deletions
diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Models/LiquidVolumesCollection.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Models/LiquidVolumesCollection.cs
index 8eaae4452..704fc36b0 100644
--- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Models/LiquidVolumesCollection.cs
+++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Models/LiquidVolumesCollection.cs
@@ -43,12 +43,6 @@ namespace Tango.PPC.Jobs.Models
return this.FirstOrDefault(x => x.IdsPack.LiquidType.Type == (LiquidTypes)type);
}
- public LiquidVolumeModel FindLiquidVolumeForCatalog(String name)
- {
- var volume = this.Where(x => x.IdsPack.LiquidType.HasPigment && !x.IdsPack.LiquidType.IsLightInk).FirstOrDefault(x => x.IdsPack.LiquidType.Type.ToString().ToLower().Contains(name.ToLower()));
- return volume;
- }
-
public void Undo()
{
this.ToList().ForEach(x => x.Undo());