benchtopparser/BenchtopParser/I28.cs

17 lines
517 B
C#
Raw Normal View History

2022-07-26 04:22:31 +00:00
using System;
namespace BenchtopParser {
public class I28 {
2022-07-26 04:59:04 +00:00
public static ProgramConfig Load_ProgramConfig(String program_config_value) {
ProgramConfig pc = new ProgramConfig(program_config_value);
return pc;
2022-07-25 04:10:26 +00:00
}
2022-07-26 04:22:31 +00:00
public static TransducerVerify Load_TransducerVerify(String transducer_verify_value) {
TransducerVerify tv = new TransducerVerify(transducer_verify_value);
return tv;
}
2022-07-25 04:10:26 +00:00
}
}
2022-07-26 04:22:31 +00:00
// TODO: normalize snake or pascal case