예제 #1
0
 public NotificationServiceV3RequestCacheDecorator(INotificationServiceV3 notificationServiceV3, ICache cache)
 {
     this.notificationServiceV3 = notificationServiceV3;
     this.cache = cache;
 }
예제 #2
0
 public NotificationServiceV3LoogerDecorator(INotificationServiceV3 notificationServiceV3, ILogger logger)
 {
     this.notificationServiceV3 = notificationServiceV3;
     this.logger = logger;
 }
예제 #3
0
 public NotificationServiceV3RequestValidatorDecorator(INotificationServiceV3 notificationServiceV3, IObjectValidator validator)
 {
     this.notificationServiceV3 = notificationServiceV3;
     this.validator             = validator;
 }
 public NotificationV3Controller(INotificationServiceV3 notificationService)
 {
     this.notificationService = notificationService;
 }