benchtopparser/BenchtopParser/I28.cs
2022-07-26 00:59:04 -04:00

17 lines
517 B
C#

using System;
namespace BenchtopParser {
public class I28 {
public static ProgramConfig Load_ProgramConfig(String program_config_value) {
ProgramConfig pc = new ProgramConfig(program_config_value);
return pc;
}
public static TransducerVerify Load_TransducerVerify(String transducer_verify_value) {
TransducerVerify tv = new TransducerVerify(transducer_verify_value);
return tv;
}
}
}
// TODO: normalize snake or pascal case