Beispiel #1
0
 /// <summary>
 /// Add new OCR name to the OCR names list
 /// </summary>
 public void AddOCRNameNew(string newOcrName)
 {
     OcrNames.Add(newOcrName);
 }
Beispiel #2
0
 /// <summary>
 /// Add new OCR name to the OCR names list and updates the database
 /// </summary>
 public void AddOCRName(string newOcrName)
 {
     OcrNames.Add(newOcrName);
     DatabaseAccess.Access.AddOcrName(ID, newOcrName);
 }