Ejemplo n.º 1
0
 public PendingAlertIndexItem(string _type, int _count, IPendingAlert ics)
 {
     InitializeComponent();
     this.lb_Type.Text  = (_type.Length > 17) ? _type.Substring(0, 17) : _type;
     this.lb_count.Text = _count.ToString();
     ICS_PendingAlert   = ics;
 }
Ejemplo n.º 2
0
 public bool RegisterIPendingAlert(IPendingAlert iPendingAlert)
 {
     if (!PendingAlertLib.Contains(iPendingAlert))
     {
         PendingAlertLib.Add(iPendingAlert);
     }
     return(true);
 }
Ejemplo n.º 3
0
 public PendingAlertIndex(string groupName, int count, IPendingAlert ics)
 {
     GroupName = groupName;
     Count     = count;
     ICS_Alert = ics;
 }