service/src/main/java/org/apache/fineract/cn/cheque/service/rest/ChequeRestController.java [61:68]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public ChequeRestController(@Qualifier(ServiceConstants.LOGGER_NAME) final Logger logger,
                              final CommandGateway commandGateway,
                              final ChequeService chequeService) {
    super();
    this.logger = logger;
    this.commandGateway = commandGateway;
    this.chequeService = chequeService;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



service/src/main/java/org/apache/fineract/cn/cheque/service/rest/ChequeTransactionRestController.java [53:60]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public ChequeTransactionRestController(@Qualifier(ServiceConstants.LOGGER_NAME) final Logger logger,
                                         final CommandGateway commandGateway,
                                         final ChequeService chequeService) {
    super();
    this.logger = logger;
    this.commandGateway = commandGateway;
    this.chequeService = chequeService;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



