Exemplo n.º 1
0
        bool IntfDalServiceRessource.testBase(string strConnection)
        {
            bool isConnection             = false;
            ImplDalConnectBase connection = new ImplDalConnectBase(strConnection);

            connection.openConnection();
            isConnection = connection.IsConnection;
            connection.closeConnection();

            return(isConnection);
        }
Exemplo n.º 2
0
        bool IntfDalServicePage.testConnection()
        {
            #region declaration
            ImplDalConnectBase connection = null;
            bool isConnection             = false;
            #endregion

            #region implementation
            connection = new ImplDalConnectBase(this.strConnection);
            connection.openConnection();
            isConnection = connection.IsConnection;
            connection.closeConnection();
            #endregion

            return(isConnection);
        }
Exemplo n.º 3
0
 public ImplDalSourceEnergie()
 {
     this.serviceRessource  = new ImplDalServiceRessource();
     this.strConnection     = this.serviceRessource.getDefaultStrConnection();
     this.serviceConnection = new ImplDalConnectBase(strConnection);
 }
Exemplo n.º 4
0
 public ImplDalTypeProprietaire()
 {
     this.serviceRessource  = new ImplDalServiceRessource();
     this.strConnection     = this.serviceRessource.getDefaultStrConnection();
     this.serviceConnection = new ImplDalConnectBase(strConnection);
 }
Exemplo n.º 5
0
 public ImplDalCooperative(string strConnection)
 {
     this.strConnection = strConnection;
     serviceConnection  = new ImplDalConnectBase(strConnection);
 }
Exemplo n.º 6
0
 public ImplDalSourceEnergie(string strConnection)
 {
     this.strConnection = strConnection;
     serviceConnection  = new ImplDalConnectBase(strConnection);
 }
Exemplo n.º 7
0
 public ImplDalStatistique()
 {
     this.serviceRessource   = new ImplDalServiceRessource();
     this.serviceConnectBase = new ImplDalConnectBase(this.serviceRessource.getDefaultStrConnection());
 }
Exemplo n.º 8
0
 public ImplDalStatistique(string strConnection)
 {
     this.serviceConnectBase = new ImplDalConnectBase(strConnection);
 }
Exemplo n.º 9
0
 public ImplDalPrelevement()
 {
     this.serviceRessource   = new ImplDalServiceRessource();
     this.serviceConnectBase = new ImplDalConnectBase(this.serviceRessource.getDefaultStrConnection());
 }
Exemplo n.º 10
0
 public ImplDalPrelevement(string strConnection)
 {
     this.serviceConnectBase = new ImplDalConnectBase(strConnection);
 }
Exemplo n.º 11
0
 public ImplDalGeneral(string strConnection)
 {
     this.strConnection = strConnection;
     serviceConnection  = new ImplDalConnectBase(strConnection);
 }
Exemplo n.º 12
0
 public ImplDalProprietaire(string strConnection)
 {
     this.strConnection = strConnection;
     serviceConnection  = new ImplDalConnectBase(strConnection);
 }
Exemplo n.º 13
0
 public ImplDalIndividu(string strConnection)
 {
     this.strConnection = strConnection;
     serviceConnection  = new ImplDalConnectBase(strConnection);
 }
Exemplo n.º 14
0
 public ImplDalSituationFamiliale(string strConnection)
 {
     this.serviceConnectBase = new ImplDalConnectBase(strConnection);
 }
Exemplo n.º 15
0
 public ImplDalSituationFamiliale()
 {
     this.serviceRessource   = new ImplDalServiceRessource();
     this.serviceConnectBase = new ImplDalConnectBase(this.serviceRessource.getDefaultStrConnection());
 }
Exemplo n.º 16
0
 public ImplDalParamVehicule()
 {
     this.serviceRessource  = new ImplDalServiceRessource();
     this.strConnection     = this.serviceRessource.getDefaultStrConnection();
     this.serviceConnection = new ImplDalConnectBase(strConnection);
 }
Exemplo n.º 17
0
 public ImplDalParamVehicule(string strConnection)
 {
     this.strConnection = strConnection;
     serviceConnection  = new ImplDalConnectBase(strConnection);
 }