Exemplo n.º 1
0
 internal void SetDriver(Driver.Logic.Driver Driver)
 {
     if (Driver == null)
     {
         throw new ArgumentNullException(nameof(Driver), "Driver is null");
     }
     this.Driver = Driver;
 }
Exemplo n.º 2
0
 internal Memory(Driver.Logic.Driver Driver)
 {
     this.SetDriver(Driver);
 }