public static bool IsPassing(IGPACredits g)
        {
            if (g is ViewItemClass c)
            {
                return(c.IsPassing);
            }

            return(false);
        }
        public static GpaType GetGpaType(IGPACredits g)
        {
            if (g is ViewItemClass c)
            {
                return(c.GpaType);
            }

            return(GpaType.Standard);
        }