Esempio n. 1
0
        public static object[] GetFields(object component)
        {
            if (component is DataRowView == false)
            {
                throw new ArgumentException();
            }

            return(CremaDomainUtility.GetFields(component as DataRowView));
        }
Esempio n. 2
0
        public static object[] GetFields(object component, string fieldName, object value)
        {
            if (component is DataRowView == false)
            {
                throw new ArgumentException();
            }

            return(CremaDomainUtility.GetFields(component as DataRowView, fieldName, value));
        }