delphimvcframework/samples/winecellarclientlivebinding/WineCellarClientLiveBinding.dpr
daniele.teti 5a8f19a238 ADD Samples
- Middleware
- WineCellar with livebindings
2014-04-01 00:12:34 +00: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.