데이타셋 데모
1. Tag를 활용한 리펙토링 2. Interface를 활용한 DataSet State 분리
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
unit Employee.Model;
|
||||
|
||||
interface
|
||||
|
||||
type
|
||||
TEmployee = record
|
||||
Name: string;
|
||||
Age: integer;
|
||||
Position: string;
|
||||
Salary: integer;
|
||||
Address: string;
|
||||
end;
|
||||
|
||||
implementation
|
||||
|
||||
end.
|
||||
Reference in New Issue
Block a user