AwesomeComputers.Computers.Computer.Computer C# (CSharp) Method

Computer() protected method

protected Computer ( ICPU cpu, IRAM ram, IVideoCard videoCard, RAID hardDriveRaid, IMotherboard motherBoard ) : System.Collections.Generic
cpu ICPU
ram IRAM
videoCard IVideoCard
hardDriveRaid AwesomeComputers.HardDrive.RAID
motherBoard IMotherboard
return System.Collections.Generic
        protected Computer(ICPU cpu, IRAM ram, IVideoCard videoCard, RAID hardDriveRaid, IMotherboard motherBoard)
        {
            this.cpu = cpu;
            this.ram = ram;
            this.videoCard = videoCard;
            this.hardDriveRaid = hardDriveRaid;
            this.motherBoard = motherBoard;
        }
    }
Computer