static public void AIResetChanges(AccountInfo ai) { ai.ResetAllChangeStatus(); }
static public bool AIGetChangeStatus(AccountInfo ai, string name) { return(ai.GetChangeStatusForProperty(name)); }
static public object AIGetValue(AccountInfo ai, string name) { return(ai.GetValueForProperty(name)); }
static public void AILoadValue(AccountInfo ai, string name, object value) { ai.LoadValueIntoProperty(name, value); }