Пример #1
0
        public static CDecimal Create(object value)
        {
            Decimal  newValue   = Convert.ToDecimal(value);
            CDecimal Customtype = new CDecimal(newValue);

            return(Customtype);
        }
Пример #2
0
        public static CDecimal Create(IDataReader row, String name)
        {
            CDecimal Customtype = new CDecimal(row[name]);

            return(Customtype);
        }
Пример #3
0
        public static CDecimal Create(Decimal value)
        {
            CDecimal Customtype = new CDecimal(value);

            return(Customtype);
        }