示例#1
0
 private void UpdateProcessFields(string filePath, string brewNumber)
 {
     _fileParser.Initialize(filePath, brewNumber);
     _processHeaderFields  = new Dictionary <string, string>();
     _processHeaderFields  = _fileParser.GetHeaderFields();
     _processSectionFields = new Dictionary <string, IDictionary <string, string> >();
     _processSectionFields = _fileParser.GetSectionFields();
 }