bool IntfDalServiceRessource.testBase(string strConnection) { bool isConnection = false; ImplDalConnectBase connection = new ImplDalConnectBase(strConnection); connection.openConnection(); isConnection = connection.IsConnection; connection.closeConnection(); return(isConnection); }
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); }
public ImplDalSourceEnergie() { this.serviceRessource = new ImplDalServiceRessource(); this.strConnection = this.serviceRessource.getDefaultStrConnection(); this.serviceConnection = new ImplDalConnectBase(strConnection); }
public ImplDalTypeProprietaire() { this.serviceRessource = new ImplDalServiceRessource(); this.strConnection = this.serviceRessource.getDefaultStrConnection(); this.serviceConnection = new ImplDalConnectBase(strConnection); }
public ImplDalCooperative(string strConnection) { this.strConnection = strConnection; serviceConnection = new ImplDalConnectBase(strConnection); }
public ImplDalSourceEnergie(string strConnection) { this.strConnection = strConnection; serviceConnection = new ImplDalConnectBase(strConnection); }
public ImplDalStatistique() { this.serviceRessource = new ImplDalServiceRessource(); this.serviceConnectBase = new ImplDalConnectBase(this.serviceRessource.getDefaultStrConnection()); }
public ImplDalStatistique(string strConnection) { this.serviceConnectBase = new ImplDalConnectBase(strConnection); }
public ImplDalPrelevement() { this.serviceRessource = new ImplDalServiceRessource(); this.serviceConnectBase = new ImplDalConnectBase(this.serviceRessource.getDefaultStrConnection()); }
public ImplDalPrelevement(string strConnection) { this.serviceConnectBase = new ImplDalConnectBase(strConnection); }
public ImplDalGeneral(string strConnection) { this.strConnection = strConnection; serviceConnection = new ImplDalConnectBase(strConnection); }
public ImplDalProprietaire(string strConnection) { this.strConnection = strConnection; serviceConnection = new ImplDalConnectBase(strConnection); }
public ImplDalIndividu(string strConnection) { this.strConnection = strConnection; serviceConnection = new ImplDalConnectBase(strConnection); }
public ImplDalSituationFamiliale(string strConnection) { this.serviceConnectBase = new ImplDalConnectBase(strConnection); }
public ImplDalSituationFamiliale() { this.serviceRessource = new ImplDalServiceRessource(); this.serviceConnectBase = new ImplDalConnectBase(this.serviceRessource.getDefaultStrConnection()); }
public ImplDalParamVehicule() { this.serviceRessource = new ImplDalServiceRessource(); this.strConnection = this.serviceRessource.getDefaultStrConnection(); this.serviceConnection = new ImplDalConnectBase(strConnection); }
public ImplDalParamVehicule(string strConnection) { this.strConnection = strConnection; serviceConnection = new ImplDalConnectBase(strConnection); }