mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-17 08:45:55 +01:00
14 lines
179 B
ObjectPascal
14 lines
179 B
ObjectPascal
|
unit ServicesU;
|
||
|
|
||
|
interface
|
||
|
|
||
|
type
|
||
|
ICalculator = interface
|
||
|
['{251FB86D-1A8B-4BBA-9487-B52AF8E18536}']
|
||
|
function DoCalc(a,b: Integer): Integer;
|
||
|
end;
|
||
|
|
||
|
implementation
|
||
|
|
||
|
end.
|