コード例 #1
0
 public LineNotifyAppService(
     ILineNotifyGateway lineNotifyApi
     )
 {
     this.lineNotifyGateway = lineNotifyApi;
     LocalizationResource   = typeof(LineNotifyResource);
     ObjectMapperContext    = typeof(LineNotifyApplicationModule);
 }
コード例 #2
0
 public LineNotifyWebhook(
     IDistributedEventBus distributedEventBus,
     ILineNotifyGateway lineNotifyGateway
     )
 {
     LocalizationResource = typeof(LineNotifyResource);
     _distributedEventBus = distributedEventBus;
     _lineNotifyGateway   = lineNotifyGateway;
 }