delphimvcframework/samples/renders/InMemoryDataU.pas
Daniele Teti a678421e06 Updated sample render
JsonDataObjects Serializer not produced compact json
2017-05-25 10:31:26 +02:00

65 lines
995 B
ObjectPascal

unit InMemoryDataU;
interface
uses
System.Generics.Collections,
BusinessObjectsU;
function GetPeopleList: TObjectList<TPerson>;
implementation
uses
System.SysUtils;
var
GPeople: TObjectList<TPerson>;
procedure PopulateList;
var
p: TPerson;
I: Integer;
begin
GPeople := TObjectList<TPerson>.Create(True);
for I := 1 to 1000 do
begin
p := TPerson.Create;
p.FirstName := 'Daniele';
p.LastName := 'Teti';
p.DOB := EncodeDate(1979, 11, 4);
p.Married := True;
GPeople.Add(p);
p := TPerson.Create;
p.FirstName := 'John';
p.LastName := 'Doe';
p.DOB := EncodeDate(1879, 10, 2);
p.Married := False;
GPeople.Add(p);
p := TPerson.Create;
p.FirstName := 'Jane';
p.LastName := 'Doe';
p.DOB := EncodeDate(1883, 1, 5);
p.Married := True;
GPeople.Add(p);
end;
end;
function GetPeopleList: TObjectList<TPerson>;
begin
Result := GPeople;
end;
initialization
PopulateList;
finalization
GPeople.Free;
end.