Пример #1
0
 private Console(ProcessorTypes processorType, ManufacturerNames manufacturerNames, MediaTypes mediaType,
                 string consoleName, int hardDiskCapacity, List <string> installedGames, List <string> systemAccounts)
 {
     this.ProcessorType    = processorType;
     this.ManufactName     = manufacturerNames;
     this.MediaType        = mediaType;
     this.ConsoleName      = consoleName;
     this.HardDiskCapacity = hardDiskCapacity;
     this.InstalledGames   = installedGames;
     this.SystemAccounts   = systemAccounts;
 }
Пример #2
0
 public Manufacturer(ManufacturerNames name, Countries country, int employeesNumber)
 {
     this.Name            = name;
     this.Country         = country;
     this.EmployeesNumber = employeesNumber;
 }