public static CBoolean Create(object value) { Boolean newValue = Convert.ToBoolean(value); CBoolean Customtype = new CBoolean(newValue); return(Customtype); }
public static CBoolean Create(IDataReader row, String name) { CBoolean Customtype = new CBoolean(row[name]); return(Customtype); }
public static CBoolean Create(Boolean value) { CBoolean Customtype = new CBoolean(value); return(Customtype); }