mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-15 07:45:54 +01:00
21 lines
316 B
ObjectPascal
21 lines
316 B
ObjectPascal
|
unit MVCFramework.Serializer.Defaults;
|
||
|
|
||
|
interface
|
||
|
|
||
|
uses
|
||
|
MVCFramework.Serializer.Intf;
|
||
|
|
||
|
function GetDefaultSerializer: IMVCSerializer;
|
||
|
|
||
|
implementation
|
||
|
|
||
|
uses
|
||
|
MVCFramework.Serializer.JsonDataObjects;
|
||
|
|
||
|
function GetDefaultSerializer: IMVCSerializer;
|
||
|
begin
|
||
|
Result := TMVCJsonDataObjectsSerializer.Create;
|
||
|
end;
|
||
|
|
||
|
end.
|