aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.UI/Notifications/NotificationItems/EmptyCartridgesNotification.cs
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2018-07-14 21:27:57 +0300
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2018-07-14 21:27:57 +0300
commit64bcf92608faae31b7cd31ac3da5c7d1d7ebcd0b (patch)
tree2dea80413ecffe5aa5d44b1d73d98f1f735e5916 /Software/Visual_Studio/PPC/Tango.PPC.UI/Notifications/NotificationItems/EmptyCartridgesNotification.cs
parent7f20e0b3199b469197364cb72436a4843b68b114 (diff)
downloadTango-64bcf92608faae31b7cd31ac3da5c7d1d7ebcd0b.tar.gz
Tango-64bcf92608faae31b7cd31ac3da5c7d1d7ebcd0b.zip
Implemented job completed notification item.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.UI/Notifications/NotificationItems/EmptyCartridgesNotification.cs')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.UI/Notifications/NotificationItems/EmptyCartridgesNotification.cs34
1 files changed, 0 insertions, 34 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.UI/Notifications/NotificationItems/EmptyCartridgesNotification.cs b/Software/Visual_Studio/PPC/Tango.PPC.UI/Notifications/NotificationItems/EmptyCartridgesNotification.cs
deleted file mode 100644
index 49a0c03eb..000000000
--- a/Software/Visual_Studio/PPC/Tango.PPC.UI/Notifications/NotificationItems/EmptyCartridgesNotification.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using Tango.BL.Entities;
-using Tango.BL.Enumerations;
-using Tango.PPC.Common.Notifications;
-
-namespace Tango.PPC.UI.Notifications.NotificationItems
-{
- public class EmptyCartridgesNotification : NotificationItem
- {
- public List<LiquidType> LiquidTypes { get; set; }
-
- public EmptyCartridgesNotification()
- {
- Message = "Cartridges are empty, please replace cartridges";
- }
-
- public EmptyCartridgesNotification(IEnumerable<LiquidType> liquidTypes) : this()
- {
- LiquidTypes = liquidTypes.ToList();
- }
-
- public override Type ViewType
- {
- get
- {
- return typeof(EmptyCartridgesNotificationView);
- }
- }
- }
-}