Beispiel #1
0
        internal void CopyValues(BankAccountInfo source)
        {
            if (source == null)
            {
                return;
            }

            _record.CopyValues(source._base.Record);
        }
Beispiel #2
0
 internal static string SELECT(long oid, bool lockTable)
 {
     return(SELECT(new QueryConditions {
         BankAccount = BankAccountInfo.New(oid)
     }, lockTable));
 }