Esempio n. 1
0
        protected void CopyValues(LoanInfo source)
        {
            if (source == null)
            {
                return;
            }

            Oid = source.Oid;
            _base.CopyValues(source);
        }
 public static string SELECT(LoanInfo parent)
 {
     return(InterestRate.SELECT(new QueryConditions {
         Loan = parent
     }, true));
 }