mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 16:25:54 +01:00
28 lines
299 B
ObjectPascal
28 lines
299 B
ObjectPascal
unit BaseServiceU;
|
|
|
|
interface
|
|
|
|
type
|
|
TBaseService = class
|
|
public
|
|
constructor Create; virtual;
|
|
destructor Destroy; override;
|
|
end;
|
|
|
|
implementation
|
|
|
|
{ TBaseService }
|
|
|
|
constructor TBaseService.Create;
|
|
begin
|
|
inherited;
|
|
end;
|
|
|
|
destructor TBaseService.Destroy;
|
|
begin
|
|
|
|
inherited;
|
|
end;
|
|
|
|
end.
|