コード例 #1
0
ファイル: Item.cs プロジェクト: Michal-MK/BillScannerWPF
 /// <summary>
 /// Add new OCR name to the OCR names list
 /// </summary>
 public void AddOCRNameNew(string newOcrName)
 {
     OcrNames.Add(newOcrName);
 }
コード例 #2
0
ファイル: Item.cs プロジェクト: Michal-MK/BillScannerWPF
 /// <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);
 }