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; }
public Manufacturer(ManufacturerNames name, Countries country, int employeesNumber) { this.Name = name; this.Country = country; this.EmployeesNumber = employeesNumber; }