Esempio n. 1
0
 static public void AIResetChanges(AccountInfo ai)
 {
     ai.ResetAllChangeStatus();
 }
Esempio n. 2
0
 static public bool AIGetChangeStatus(AccountInfo ai, string name)
 {
     return(ai.GetChangeStatusForProperty(name));
 }
Esempio n. 3
0
 static public object AIGetValue(AccountInfo ai, string name)
 {
     return(ai.GetValueForProperty(name));
 }
Esempio n. 4
0
 static public void AILoadValue(AccountInfo ai, string name, object value)
 {
     ai.LoadValueIntoProperty(name, value);
 }