예제 #1
0
 public CoinbaseController(
     ILogger <CoinbaseController> logger,
     IServiceNotificationRepository repository,
     IServiceNotificationTransformer transformer)
 {
     _logger      = logger;
     _repository  = repository;
     _transformer = transformer;
 }
예제 #2
0
 public ServiceNotificationsController(IServiceNotificationRepository serviceNotificationRepository,
                                       IMapper mapper)
 {
     _serviceNotificationRepository = serviceNotificationRepository;
     _mapper = mapper;
 }