데이타셋 데모

1. Tag를 활용한 리펙토링
2. Interface를 활용한 DataSet State 분리
This commit is contained in:
pagewiz@naver.com
2024-11-19 10:52:51 +09:00
commit de67a00e75
11 changed files with 2287 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
unit Employee.Model;
interface
type
TEmployee = record
Name: string;
Age: integer;
Position: string;
Salary: integer;
Address: string;
end;
implementation
end.