コード例 #1
0
ファイル: QrCodeService.cs プロジェクト: coffeexcode/capstone
 public QrCodeService(
     IQrCodeDataService qrCodeDataService,
     IQrCodeRenderingService qrCodeRenderingService,
     IImageFileService imageFileService,
     ICreatedQrCodeRepository qrCodeRepository,
     ApiKeyProvider apiKeyProvider
     )
 {
     this.qrCodeDataService      = qrCodeDataService;
     this.qrCodeRenderingService = qrCodeRenderingService;
     this.imageFileService       = imageFileService;
     this.qrCodeRepository       = qrCodeRepository;
     this.apiKeyProvider         = apiKeyProvider;
 }
コード例 #2
0
 public AuthorizationService(
     ICreatedQrCodeRepository repository)
 {
     this.repository = repository;
 }