예제 #1
0
파일: Program.cs 프로젝트: WHUynl/Yanshi
        static void Main(string[] args)
        {
            SimpleFactory s = new SimpleFactory();
            Foruser       f = new Foruser(s);

            f.makePainting();
        }
예제 #2
0
파일: Program.cs 프로젝트: WHUynl/Yanshi
 public Foruser(SimpleFactory sf)
 {
     this.sf = sf;
 }