mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 00:05:53 +01:00
27 lines
506 B
ObjectPascal
27 lines
506 B
ObjectPascal
unit MainDMU;
|
|
|
|
interface
|
|
|
|
uses
|
|
System.SysUtils, System.Classes, FireDAC.Stan.Intf, FireDAC.Stan.Option,
|
|
FireDAC.Stan.Param, FireDAC.Stan.Error, FireDAC.DatS, FireDAC.Phys.Intf,
|
|
FireDAC.DApt.Intf, FireDAC.Stan.StorageBin, Data.DB, FireDAC.Comp.DataSet,
|
|
FireDAC.Comp.Client;
|
|
|
|
type
|
|
TdmMain = class(TDataModule)
|
|
dsPeople: TFDMemTable;
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
implementation
|
|
|
|
{%CLASSGROUP 'System.Classes.TPersistent'}
|
|
|
|
{$R *.dfm}
|
|
|
|
end.
|