예제 #1
0
 public DiskDVD(string model, TypeDVD typeDVD) : base("DVD диск", model)
 {
     TypeDVD      = typeDVD;
     Speed        = 1.32;
     AllMemory    = (int)TypeDVD;
     FilledMemory = 0;
 }
예제 #2
0
파일: DVD.cs 프로젝트: Uncle205/HomeTask
 public DVD(string name, string model, TypeDVD typeDVD)
 {
     ReadingVelocity = 10.5;
     RecordingSpeed  = 10.5;
     Name            = name;
     Model           = model;
     MaxSize         = (double)typeDVD;
 }
예제 #3
0
 public DVD(TypeDVD TypeDVD)
 {
     this.TypeDVD      = TypeDVD;
     this.SpeedOfRead  = 1.32;
     this.SpeedOfWrite = 1.32;
     FreeMemory        = (int)TypeDVD;
     Dcounter++;
 }
예제 #4
0
 public DVD(TypeDVD TypeDVD, double ReadSpeed, double WriteSpeed)
 {
     this.TypeDVD    = TypeDVD;
     this.ReadSpeed  = ReadSpeed;
     this.WriteSpeed = WriteSpeed;
     FreeMemory      = (int)TypeDVD;
     Dcounter++;
 }
예제 #5
0
파일: DVD.cs 프로젝트: Konstantin96/BackUP
 public DVD(double SpeedRead, double SpeedWrite, TypeDVD TypeDVD)
 {
     this.SpeedRead  = SpeedRead;
     this.SpeedWrite = SpeedWrite;
     this.TypeDVD    = TypeDVD;
 }
예제 #6
0
파일: DVD.cs 프로젝트: aakylbekov/bc0305
 public DVD(double _SpeedWrite, TypeDVD _typeDVD) : base()
 {
     typeDVD    = _typeDVD;
     SpeedWrite = _SpeedWrite;
 }
예제 #7
0
 public DVD(TypeDVD TypeDVD, double SpeedOfRead, double SpeedOfWrite)
 {
     this.TypeDVD      = TypeDVD;
     this.SpeedOfRead  = SpeedOfRead;
     this.SpeedOfWrite = SpeedOfWrite;
 }
예제 #8
0
 public DVD(TypeDVD TypeDVD, double ReadSp, double WriteSp)
 {
     this.TypeDVD = TypeDVD;
     this.ReadSp  = ReadSp;
     this.WriteSp = WriteSp;
 }
예제 #9
0
 public DVD(int SpeedWrite, TypeDVD typeDVD) : base()
 {
     this.SpeedWrite = SpeedWrite;
     this.typeDVD    = typeDVD;
 }