пример работает

This commit is contained in:
2025-02-06 09:18:52 +03:00
parent 71e92f0301
commit 0b455b8dd8
11 changed files with 50 additions and 43 deletions
+1 -1
View File
@@ -9,6 +9,6 @@ public class PrinterFactory : IPrinterFactory
{
public TransmittedSharedObject<IPrinter> Create(string printerName)
{
return new Printer(){Name = printerName};
return new Printer {Name = printerName};
}
}