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

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

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

            return(Customtype);
        }