delphimvcframework/samples/winecellarclient_withlivebinding/WineCellarClientLiveBinding.dpr
Daniele Teti 14c4489f41 New Demos
2016-11-07 14:33:05 +01:00

17 lines
379 B
ObjectPascal

program WineCellarClientLiveBinding;
uses
Vcl.Forms,
MainFormU in 'MainFormU.pas' {Form5},
MVCFramework.RESTClient in '..\..\sources\MVCFramework.RESTClient.pas',
WinesBO in '..\winecellar\WinesBO.pas';
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TForm5, Form5);
Application.Run;
end.