コード例 #1
0
ファイル: PrintService.cs プロジェクト: kriznaraj/Code
        public PrintService(PrintServiceConfig printServiceConfig, ILogger logger)
        {
            IPrintServiceNotificationProvider provider = new PrintServerSingleNotificationProvider(this, this);

            this.factory = new PrintManagerFactory(printServiceConfig, logger, provider);
            this.printResponseDictionary = new ConcurrentDictionary <PrintJobId, PrintResponse>();
        }
コード例 #2
0
ファイル: PrintService.cs プロジェクト: krishnarajv/Code
 public PrintService(PrintServiceConfig printServiceConfig, ILogger logger)
 {
     IPrintServiceNotificationProvider provider = new PrintServerSingleNotificationProvider(this, this);
     this.factory = new PrintManagerFactory(printServiceConfig, logger, provider);
     this.printResponseDictionary = new ConcurrentDictionary<PrintJobId, PrintResponse>();
 }