Пример #1
0
 private void readFromExcel(string filePath)
 {
     try
     {
         codes = CostCodeControl.getCostCodesFromExcel(filePath, standardsDic, standardColDic);
     }
     catch (FormatException error)
     {
         MessageBox.Show(error.Message);
         //codes = new List<CostCode>();
     }
 }