Sodium2HydroxideContent.cs 379 B

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