您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

20 行
427 B

  1. using JT1078.Gateway.Abstractions;
  2. namespace JT1078.Gateway.Impl
  3. {
  4. public class JT1078GatewayBuilderDefault : IJT1078GatewayBuilder
  5. {
  6. public IJT1078Builder JT1078Builder { get; }
  7. public JT1078GatewayBuilderDefault(IJT1078Builder builder)
  8. {
  9. JT1078Builder = builder;
  10. }
  11. public IJT1078Builder Builder()
  12. {
  13. return JT1078Builder;
  14. }
  15. }
  16. }