-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwkProject.dpr
More file actions
24 lines (21 loc) · 838 Bytes
/
wkProject.dpr
File metadata and controls
24 lines (21 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
program wkProject;
uses
Vcl.Forms,
uPrincipal in 'View\uPrincipal.pas' {frm_Principal},
Model.DAO in 'Model\Model.DAO.pas',
Model.Clientes in 'Model\Model.Clientes.pas',
Controller.Clientes in 'Controller\Controller.Clientes.pas',
Model.Produtos in 'Model\Model.Produtos.pas',
Controller.Produtos in 'Controller\Controller.Produtos.pas',
Model.Pedidos in 'Model\Model.Pedidos.pas',
Controller.Pedidos in 'Controller\Controller.Pedidos.pas',
Model.ItensPedido in 'Model\Model.ItensPedido.pas',
Controller.ItensPedido in 'Controller\Controller.ItensPedido.pas',
Model.ListaItensPedido in 'Model\Model.ListaItensPedido.pas';
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(Tfrm_Principal, frm_Principal);
Application.Run;
end.