SodiumHydroxideContent.cs 378 B

123456789101112131415
  1. namespace SHJX.Service.Control.LiquidHandler.Content
  2. {
  3. public class Sodium1HydroxideContent : ILiquidContent
  4. {
  5. public INormalLiquid NormalFactory()
  6. {
  7. return new Sodium1HydroxideNormalLiquidHandler();
  8. }
  9. public IWashLiquid WashFactory()
  10. {
  11. return new SodiumHydroxideWashLiquidHandler();
  12. }
  13. }
  14. }