예제 #1
0
        private string GetCommonEmployee(CommonEmployee commonEmployee)
        {
            string basicInfo = this.GetBasicInfo(commonEmployee);

            basicInfo += "工作:" + commonEmployee.GetJob() + "\t";
            return(basicInfo);
        }
예제 #2
0
 public void visit(CommonEmployee commonEmployee)
 {
     Console.WriteLine(this.GetCommonEmployee(commonEmployee));
 }