Example #1
0
 public Flash(string name, string model, double memory, typeUSB typeUSB)
 {
     this.memory  = memory;
     this.typeUSB = typeUSB;
     FreeMemory   = memory;
     Name         = name;
     this.model   = model;
 }
Example #2
0
 public HDD(typeUSB typeUSB, int countRazd, double ObmenRazd)
 {
     this.typeUSB   = typeUSB;
     this.countRazd = countRazd;
     this.ObmenRazd = ObmenRazd;
 }
Example #3
0
 public Flash(string name, string model, double memory, typeUSB typeUSB)
 {
     this.memory  = memory;
     this.typeUSB = typeUSB;
     freeMemory   = memory;
 }
Example #4
0
 public Flash(double memory, typeUSB typeUSB)
 {
     this.memory  = memory;
     this.typeUSB = typeUSB;
     FreeMemory   = memory;
 }
Example #5
0
 public Flash(double memory, typeUSB typeUSB) : this("", "", 0.0, typeUSB.USB1)
 {
 }