예제 #1
0
 public Processore(float velocita, int numeroCore, FormatoSocketCPU formatoSocketCPU, int potenza,
                   int massimaRAM, int dimensioneCache, TecnologiaCPU tecnologiaCPU,
                   string nome, string produttore, double prezzo, string descrizione, float peso, Dictionary<Connettore, int> connettori)
     : base(nome, produttore, prezzo, descrizione, peso, connettori)
 {
     _velocita = velocita;
     _numeroCore = numeroCore;
     _formatoSocketCPU = formatoSocketCPU;
     _potenza = potenza;
     _massimaRAM = massimaRAM;
     _dimensioneCache = dimensioneCache;
    
     _tecnologiaCPU = tecnologiaCPU;
 }
예제 #2
0
 public SchedaMadre(FormatoSchedaMadre formatoSchedaMadre, FormatoSocketCPU formatoSocketCPU, Chipset chipset,
                    int numeroSlotPCIE, int numeroSlotPCI, int numeroPorteSata, int numeroSlotRAM, TecnologiaRAM tecnologiaRAM,
                    string nome, string produttore, double prezzo, string descrizione, float peso, Dictionary<Connettore, int> connettori)
     : base(nome, produttore, prezzo, descrizione, peso, connettori)
 {
     _formatoSchedaMadre = formatoSchedaMadre;
     _formatoSocketCPU = formatoSocketCPU;
     _chipset = chipset;
     _numeroSlotPCIE = numeroSlotPCIE;
     _numeroSlotPCI = numeroSlotPCI;
     _numeroPorteSata = numeroPorteSata;
     _numeroSlotRAM = numeroSlotRAM;
     _tecnologiaRAM = tecnologiaRAM;
 }