Exemple #1
0
 public virtual void SortByName()
 {
     for (int i = base.Count - 1; i > 0; i--)
     {
         for (int j = 0; j < i; j++)
         {
             if (this[j].notification_no.CompareTo(this[j + 1].notification_no) > 0)
             {
                 OutstandingCompletedJob job = this[j];
                 this[j]     = this[j + 1];
                 this[j + 1] = job;
             }
         }
     }
 }
Exemple #2
0
 public int Add(OutstandingCompletedJob value)
 {
     return(base.List.Add(value));
 }
Exemple #3
0
 public void Remove(OutstandingCompletedJob value)
 {
     base.List.Remove(value);
 }
Exemple #4
0
 public void Insert(int index, OutstandingCompletedJob value)
 {
     base.List.Insert(index, value);
 }
Exemple #5
0
 public int IndexOf(OutstandingCompletedJob value)
 {
     return(base.List.IndexOf(value));
 }
Exemple #6
0
 public bool Contains(OutstandingCompletedJob value)
 {
     return(base.List.Contains(value));
 }