예제 #1
0
파일: InputWCF.cs 프로젝트: muzefm/ebucms
        public InputWCF(ContentManagerCore contentManagerCore)
        {
            this.contentManagerCore = contentManagerCore;

            this.setup(null);
            this.start();
        }
예제 #2
0
 public static ContentManagerCore getInstance()
 {
     lock (InstanceLock)
     {
         if (instance == null)
         {
             instance = new ContentManagerCore();
         }
         return instance;
     }
 }