Ejemplo n.º 1
0
        public static Employee SelectEmployeeByID(string id)
        {
            var dal = new EmployeeDAL();
            DataRow row = dal.SelectEmployeeByID(id);

            var ins = new Employee();
            ins.Bind(row);

            return ins;
        }