public ICustomPrinter GetCustomPrinter(string customPrinterName)
 {
     return(CustomPrinters.FirstOrDefault(x => x.Name == customPrinterName));
 }
 public IEnumerable <string> GetCustomPrinterNames()
 {
     return(CustomPrinters.Select(x => x.Name));
 }