public CollateralController(
     IJoinFederationRequestService joinFederationRequestService,
     Network network)
 {
     this.joinFederationRequestService = joinFederationRequestService;
     this.logger  = LogManager.GetCurrentClassLogger();
     this.network = network;
 }
Exemplo n.º 2
0
 public CollateralController(
     IJoinFederationRequestService joinFederationRequestService,
     ILoggerFactory loggerFactory,
     Network network)
 {
     this.joinFederationRequestService = joinFederationRequestService;
     this.logger  = loggerFactory.CreateLogger(this.GetType().FullName);
     this.network = network;
 }