17 lines
517 B
C#
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 |