Line | |
---|
1 | unit UAccessControler;
|
---|
2 |
|
---|
3 | {$mode delphi}
|
---|
4 |
|
---|
5 | interface
|
---|
6 |
|
---|
7 | uses
|
---|
8 | Classes, SysUtils;
|
---|
9 |
|
---|
10 | type
|
---|
11 |
|
---|
12 | { TAccessControler }
|
---|
13 |
|
---|
14 | TAccessControler = class
|
---|
15 | (* function GetUser(Id: Integer): TUser;
|
---|
16 | function GetUserCount: Integer;
|
---|
17 | function GetPassage(Id: Integer): TPassage;
|
---|
18 | function GetPassageCount: Integer;*)
|
---|
19 | end;
|
---|
20 |
|
---|
21 | implementation
|
---|
22 |
|
---|
23 | { TAccessControler }
|
---|
24 |
|
---|
25 | (*function TAccessControler.GetUser(Id: Integer): TUser;
|
---|
26 | begin
|
---|
27 |
|
---|
28 | end;
|
---|
29 |
|
---|
30 | function TAccessControler.GetUserCount: Integer;
|
---|
31 | begin
|
---|
32 |
|
---|
33 | end;
|
---|
34 |
|
---|
35 | function TAccessControler.GetPassage(Id: Integer): TPassage;
|
---|
36 | begin
|
---|
37 |
|
---|
38 | end;
|
---|
39 |
|
---|
40 | function TAccessControler.GetPassageCount: Integer;
|
---|
41 | begin
|
---|
42 |
|
---|
43 | end;*)
|
---|
44 |
|
---|
45 | end.
|
---|
46 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.