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; }
public AuthorizationService( ICreatedQrCodeRepository repository) { this.repository = repository; }