我试图解决这个问题,但失败了。主要原因是我无法理解在此问题中实际要做什么?

时间:2019-05-19 20:53:28

标签: c#

使用以下属性创建Employee类 EmployeeName作为字符串 EmployeeID为int 工资翻倍 创建另一个名为EmployeeDAL的类,它具有以下方法。 一种。公共布尔AddEmployee(Employee e) b。公共布尔DeleteEmployee(int id) C。公共字符串SearchEmployee(int id) d。 public Employee [] GetAllEmployeesistAll() 使用ArrayList存储员工 编写测试程序以测试所有功能。

这是我到目前为止编写的代码

 public class Employee 
    {
        public String EmployeeNAme;
        public int EmployeeID;
        public double Salary;
        public ArrayList emp = new ArrayList();


    }

    class EmployeeDAL : Employee
    {


        public bool add (Employee e)
        {
           emp.Add(e);
            if (emp.Contains("e") == true)
            {
                return true;
            }
            else
            {
                return false;
            }

        }
        public bool Delete(int id)
        {
            emp.RemoveAt(id);
            if (emp.Contains(id) != true)
            {
                return true;
            }
            else
            {
                return false;
            } 
        }
        public String SearchEmployee(int id)
        {

            String emp = Convert.ToString(emp[id]);
            return emp;
        }


    }


    class Program: Employee
    {
        static void Main(string[] args)
        {



        }
    }
}

0 个答案:

没有答案