Beispiel #1
0
 public CarService(
     ICarsDatabase carDB,
     IDriversDatabase driverDB
     )
 {
     CarDB    = carDB;
     DriverDB = driverDB;
 }
Beispiel #2
0
 public DriverService(
     IDriversDatabase driverDB
 )
 {
     DriverDB = driverDB;
 }