Example #1
0
 internal CPrinterSettings(IPrinterSettings newSettings)
 {
     // TODO Set current values from new settings
     throw new ApplicationException("Not implemented yet");
     //SetValuesToRegistry();
 }
		internal CPrinterSettings(IPrinterSettings newSettings)
		{
			// TODO Set current values from new settings
			throw new ApplicationException("Not implemented yet");
			//SetValuesToRegistry();
		}
Example #3
0
 public DymoPrinter(IPrinterSettings printerSettings, IBarcodeGenerator barcodeGenerator)
 {
     PrinterSettings   = printerSettings ?? throw new ArgumentNullException(nameof(printerSettings));
     _barcodeGenerator = barcodeGenerator;
 }