Exemplo n.º 1
0
        private string GetCommonEmployee(CommonEmployee commonEmployee)
        {
            string basicInfo = this.GetBasicInfo(commonEmployee);

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