Beispiel #1
0
        public Client()
        {
            var rh = new RobotHardWare();
            var rs = new RobotSoftware();
            var f  = new Facade(rh, rs);

            ClientAccess.ClientCode(f);
        }
Beispiel #2
0
 public Facade(RobotHardWare robotHardWare, RobotSoftware RobotSoftware)
 {
     this._robotHardware = robotHardWare;
     this._robotSoftware = RobotSoftware;
 }