Beispiel #1
0
 public CardManager(IConfiguration configuration)
 {
     cardDB = new CardDB(configuration);
 }
Beispiel #2
0
 public DoorControl(ICardDB cardDB, IDoor door, IBeeper beeper )
 {
     _CardDB = cardDB;
     _Door = door;
     _Beeper = beeper;
 }