Пример #1
0
        public SalEntry FindEntry(SalEntryType type)
        {
            foreach (SalEntry entry in List)
            {
                if (entry.Type == type)
                {
                    return(entry);
                }
            }

            return(null);
        }
Пример #2
0
 public SalEntry(NativeSalEntry other)
 {
     this.Type = other.SalEntryType;
     this.Text = other.Text.Trim(' ');
 }
Пример #3
0
 public SalEntry(SalEntryType type)
 {
     this.Type = type;
     this.Text = string.Empty;
 }