You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

20 lines
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. }