Skip to content

Commit

Permalink
refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
iliyan-velichkov committed Jun 17, 2024
1 parent b2fb34a commit 3c4bc46
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions src/zcl_dirigible_employee_dao.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,12 @@ CLASS zcl_dirigible_employee_dao DEFINITION PUBLIC.
END OF ty_employee,
ty_employees TYPE STANDARD TABLE OF ty_employee WITH DEFAULT KEY.

CLASS-METHODS insert_employee.

CLASS-METHODS select_all
RETURNING VALUE(rv_result) TYPE string.

CLASS-METHODS update_employee_last_name.

CLASS-METHODS delete_all_employees.
CLASS-METHODS:
delete_all_employees,
select_all
RETURNING VALUE(rv_result) TYPE string,
insert_employee,
update_employee_last_name.

ENDCLASS.

Expand Down

0 comments on commit 3c4bc46

Please sign in to comment.