public static DO.BankAccount ConverFrom_BO_To_DoBankAccount(BO.BankAccount other)
 {
     DO.BankAccount tmp = new DO.BankAccount();
     tmp.AcouuntNumber = other.AcouuntNumber;
     tmp.BranchInfo    = ConverFrom_BO_To_DoBankBranch(other.BranchInfo);
     return(tmp);
 }
 public static BO.BankAccount ConverFrom_DO_To_BoBankAccount(DO.BankAccount other)
 {
     BO.BankAccount tmp = new BO.BankAccount();
     tmp.AcouuntNumber = other.AcouuntNumber;
     tmp.BranchInfo    = ConverFrom_DO_To_BoBankBranch(other.BranchInfo);
     return(tmp);
 }