Example #1
0
 public OpNotificationObj(string InternalID) : base(InternalID)
 {
     this.NotificationNo = "";
     this.Subject        = "";
     this.TypeID         = "";
     this.SO             = "";
     this.Objnr          = "";
     this.Aufnr          = "";
     this.SignBy         = "";
     this.SignByDisgn    = "";
     this.Operator       = "";
     this.SignByDept     = "";
     this.SignByContact  = "";
     this.SignByIC       = "";
     this.RequiredTime   = "";
     this.RequiredStart  = DateTime.MinValue;
     this.RespPersonnel  = null;
     this.ActivityType   = null;
     this.SoldTo         = null;
     this.ShipTo         = null;
     this.Status         = null;
     this.Priority       = null;
     this.Equipment      = null;
     this.SAPReady       = false;
 }
Example #2
0
 public virtual void SortByName()
 {
     for (int i = base.Count - 1; i > 0; i--)
     {
         for (int j = 0; j < i; j++)
         {
             if (this[j].EquipmentSNR.CompareTo(this[j + 1].EquipmentSNR) > 0)
             {
                 EquipmentObj obj2 = this[j];
                 this[j]     = this[j + 1];
                 this[j + 1] = obj2;
             }
         }
     }
 }
Example #3
0
 public OpNotification(string id)
 {
     this.CurCust     = null;
     this.CurEquip    = null;
     this.internal_id = id;
 }
Example #4
0
 public OpNotification()
 {
     this.CurCust  = null;
     this.CurEquip = null;
 }
Example #5
0
 public int Add(EquipmentObj value)
 {
     return(base.List.Add(value));
 }
Example #6
0
 public void Remove(EquipmentObj value)
 {
     base.List.Remove(value);
 }
Example #7
0
 public void Insert(int index, EquipmentObj value)
 {
     base.List.Insert(index, value);
 }
Example #8
0
 public int IndexOf(EquipmentObj value)
 {
     return(base.List.IndexOf(value));
 }
Example #9
0
 public bool Contains(EquipmentObj value)
 {
     return(base.List.Contains(value));
 }