//
        public static void Create(InterfaceType type, Hashtable allParameters, string operation)
        {
            Update_CodeBehindBuilder cr = new Update_CodeBehindBuilder(type);
            Globals global = new Globals();

            cr.ClassName     = global.TableProgramatlyName + "_" + operation;
            cr.allParameters = allParameters;
            cr.CreateTheFile();
        }
        //
        public static void Create(InterfaceType type)
        {
            Update_CodeBehindBuilder cr = new Update_CodeBehindBuilder(type);

            cr.CreateTheFile();
        }