program FactuGES_Server; {#ROGEN:..\Servicios\FactuGES.rodl} // RemObjects: Careful, do not remove! uses uROComInit, Forms, uServerMainForm in 'uServerMainForm.pas' {fServerForm}, uAcercaDe in 'uAcercaDe.pas' {fAcercaDe}, uConexionBD in 'Configuracion\uConexionBD.pas' {frConexionBD: TFrame}, uConfGeneral in 'Configuracion\uConfGeneral.pas' {frConfGeneral: TFrame}, uConfiguracion in 'Configuracion\uConfiguracion.pas' {fConfiguracion: TForm}, uFrameConfiguracion in 'Configuracion\uFrameConfiguracion.pas' {FrameConfiguracion: TFrame}, uDataModuleServer in 'uDataModuleServer.pas' {dmServer: TDataModule}, FactuGES_Intf in '..\Servicios\FactuGES_Intf.pas', FactuGES_Invk in '..\Servicios\FactuGES_Invk.pas', srvContactos_Impl in '..\Modulos\Contactos\Servidor\srvContactos_Impl.pas' {srvContactos: TDARemoteService}, uDatabaseUtils in 'Utiles\uDatabaseUtils.pas', srvLogin_Impl in '..\Servicios\srvLogin_Impl.pas', srvPresupuestos_Impl in '..\Modulos\Presupuestos\Servidor\srvPresupuestos_Impl.pas' {srvPresupuestos: TDARemoteService}, srvEmpresas_Impl in '..\Modulos\Empresas\Servidor\srvEmpresas_Impl.pas', uSesionesUtils in 'Utiles\uSesionesUtils.pas', uUsersManager in 'uUsersManager.pas', uServerAppUtils in 'Utiles\uServerAppUtils.pas', uBizVendedoresServer in '..\Modulos\Contactos\Model\uBizVendedoresServer.pas', uBusinessUtils in 'Utiles\uBusinessUtils.pas', uBizContactosServer in '..\Modulos\Contactos\Model\uBizContactosServer.pas', uBizClientesServer in '..\Modulos\Contactos\Model\uBizClientesServer.pas', uBizProveedoresServer in '..\Modulos\Contactos\Model\uBizProveedoresServer.pas', schContactosClient_Intf in '..\Modulos\Contactos\Model\schContactosClient_Intf.pas', schContactosServer_Intf in '..\Modulos\Contactos\Model\schContactosServer_Intf.pas' { srvFacturasCliente_Impl in '..\Modulos\Facturas de cliente\Servidor\srvFacturasCliente_Impl.pas'}, srvFacturasCliente_Impl in '..\Modulos\Facturas de cliente\Servidor\srvFacturasCliente_Impl.pas', uRestriccionesUsuarioUtils in 'Utiles\uRestriccionesUsuarioUtils.pas', uRptFacturasCliente_Server in '..\Modulos\Facturas de cliente\Reports\uRptFacturasCliente_Server.pas' {RptFacturasCliente: TDataModule}, srvPedidosProveedor_Impl in '..\Modulos\Pedidos a proveedor\Servidor\srvPedidosProveedor_Impl.pas' {srvPedidosProveedor: TDARemoteService}, uBizPresupuestosServer in '..\Modulos\Presupuestos\Model\uBizPresupuestosServer.pas', uReferenciasUtils in 'Utiles\uReferenciasUtils.pas', uBizFacturasClienteServer in '..\Modulos\Facturas de cliente\Model\uBizFacturasClienteServer.pas', schEmpresasClient_Intf in '..\Modulos\Empresas\Model\schEmpresasClient_Intf.pas', schEmpresasServer_Intf in '..\Modulos\Empresas\Model\schEmpresasServer_Intf.pas', uRptPresupuestosCliente_Server in '..\Modulos\Presupuestos\Reports\uRptPresupuestosCliente_Server.pas' {RptPresupuestosCliente: TDataModule}, uRptPedidosProveedor_Server in '..\Modulos\Pedidos a proveedor\Reports\uRptPedidosProveedor_Server.pas' {RptPedidosProveedor: TDataModule}, srvCobrosCliente_Impl in '..\Modulos\Cobros de cliente\Servidor\srvCobrosCliente_Impl.pas' {srvCobrosCliente: TDARemoteService}, uBizCobrosClienteServer in '..\Modulos\Cobros de cliente\Model\uBizCobrosClienteServer.pas', schCobrosClienteClient_Intf in '..\Modulos\Cobros de cliente\Model\schCobrosClienteClient_Intf.pas', schCobrosClienteServer_Intf in '..\Modulos\Cobros de cliente\Model\schCobrosClienteServer_Intf.pas', schPedidosProveedorClient_Intf in '..\Modulos\Pedidos a proveedor\Model\schPedidosProveedorClient_Intf.pas', schPedidosProveedorServer_Intf in '..\Modulos\Pedidos a proveedor\Model\schPedidosProveedorServer_Intf.pas', srvConfiguracion_Impl in '..\Servicios\srvConfiguracion_Impl.pas' {srvConfiguracion: TDARemoteService}, srvMontajes_Impl in '..\Modulos\Montajes\Servidor\srvMontajes_Impl.pas' {srvMontajes: TDARemoteService}, schMontajesClient_Intf in '..\Modulos\Montajes\Model\schMontajesClient_Intf.pas', schMontajesServer_Intf in '..\Modulos\Montajes\Model\schMontajesServer_Intf.pas', uRptCobrosMontaje_Server in '..\Modulos\Cobros con montaje\Reports\uRptCobrosMontaje_Server.pas' {RptCobrosMontaje: TDataModule}, schFacturasClienteClient_Intf in '..\Modulos\Facturas de cliente\Model\schFacturasClienteClient_Intf.pas', schFacturasClienteServer_Intf in '..\Modulos\Facturas de cliente\Model\schFacturasClienteServer_Intf.pas', schPresupuestosClient_Intf in '..\Modulos\Presupuestos\Model\schPresupuestosClient_Intf.pas', schPresupuestosServer_Intf in '..\Modulos\Presupuestos\Model\schPresupuestosServer_Intf.pas'; {$R *.res} {$R ..\Servicios\RODLFile.res} begin Application.Initialize; Application.Title := 'FactuGES (Servidor)'; Application.CreateForm(TfServerForm, fServerForm); Application.CreateForm(TdmServer, dmServer); Application.Run; //Application.Terminate; end.