예제 #1
0
 public bool CanFlash(Chipset chipset) => _devicesAvailable[(int)chipset] > 0;
예제 #2
0
 public bool canFlash(Chipset chipset)
 {
     return(devicesAvailable[(int)chipset] > 0);
 }
예제 #3
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;
 }