コード例 #1
0
        public Client()
        {
            Storage s  = new Storage();
            Picking p  = new Picking();
            Facade  fc = new Facade(s, p);

            System.Console.WriteLine(fc.Operate());
        }
コード例 #2
0
 public Facade(Storage storage, Picking picking)
 {
     this._picking = picking;
     this._storage = storage;
 }