Example #1
0
        static void Main(string[] args)
        {
            SimpleFactory s = new SimpleFactory();
            Foruser       f = new Foruser(s);

            f.makePainting();
        }
Example #2
0
 public Foruser(SimpleFactory sf)
 {
     this.sf = sf;
 }