Esempio n. 1
0
        public static CBoolean Create(object value)
        {
            Boolean  newValue   = Convert.ToBoolean(value);
            CBoolean Customtype = new CBoolean(newValue);

            return(Customtype);
        }
Esempio n. 2
0
        public static CBoolean Create(IDataReader row, String name)
        {
            CBoolean Customtype = new CBoolean(row[name]);

            return(Customtype);
        }
Esempio n. 3
0
        public static CBoolean Create(Boolean value)
        {
            CBoolean Customtype = new CBoolean(value);

            return(Customtype);
        }