Example #1
0
 public AccountsController(ILogger <AccountsController> logger,
                           IRequestResponseBus bus,
                           ClientAccounts.ClientAccountsClient grpcClient,
                           ClientAccountsRestClient restClient)
 {
     _logger     = logger;
     _bus        = bus;
     _grpcClient = grpcClient;
     _restClient = restClient;
 }
Example #2
0
 public ImageController(IRequestResponseBus bus, IFileStore fileStore, IThumbnailFileIdStrategy fileIdStrategy)
 {
     _bus            = bus;
     _fileStore      = fileStore;
     _fileIdStrategy = fileIdStrategy;
 }