コード例 #1
0
        bool IntfDalServiceRessource.testBase(string strConnection)
        {
            bool isConnection             = false;
            ImplDalConnectBase connection = new ImplDalConnectBase(strConnection);

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

            return(isConnection);
        }
コード例 #2
0
ファイル: ImplDalServicePage.cs プロジェクト: Natolotra/App
        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);
        }
コード例 #3
0
ファイル: ImplDalSourceEnergie.cs プロジェクト: Natolotra/App
 public ImplDalSourceEnergie()
 {
     this.serviceRessource  = new ImplDalServiceRessource();
     this.strConnection     = this.serviceRessource.getDefaultStrConnection();
     this.serviceConnection = new ImplDalConnectBase(strConnection);
 }
コード例 #4
0
 public ImplDalTypeProprietaire()
 {
     this.serviceRessource  = new ImplDalServiceRessource();
     this.strConnection     = this.serviceRessource.getDefaultStrConnection();
     this.serviceConnection = new ImplDalConnectBase(strConnection);
 }
コード例 #5
0
 public ImplDalCooperative(string strConnection)
 {
     this.strConnection = strConnection;
     serviceConnection  = new ImplDalConnectBase(strConnection);
 }
コード例 #6
0
ファイル: ImplDalSourceEnergie.cs プロジェクト: Natolotra/App
 public ImplDalSourceEnergie(string strConnection)
 {
     this.strConnection = strConnection;
     serviceConnection  = new ImplDalConnectBase(strConnection);
 }
コード例 #7
0
 public ImplDalStatistique()
 {
     this.serviceRessource   = new ImplDalServiceRessource();
     this.serviceConnectBase = new ImplDalConnectBase(this.serviceRessource.getDefaultStrConnection());
 }
コード例 #8
0
 public ImplDalStatistique(string strConnection)
 {
     this.serviceConnectBase = new ImplDalConnectBase(strConnection);
 }
コード例 #9
0
 public ImplDalPrelevement()
 {
     this.serviceRessource   = new ImplDalServiceRessource();
     this.serviceConnectBase = new ImplDalConnectBase(this.serviceRessource.getDefaultStrConnection());
 }
コード例 #10
0
 public ImplDalPrelevement(string strConnection)
 {
     this.serviceConnectBase = new ImplDalConnectBase(strConnection);
 }
コード例 #11
0
 public ImplDalGeneral(string strConnection)
 {
     this.strConnection = strConnection;
     serviceConnection  = new ImplDalConnectBase(strConnection);
 }
コード例 #12
0
 public ImplDalProprietaire(string strConnection)
 {
     this.strConnection = strConnection;
     serviceConnection  = new ImplDalConnectBase(strConnection);
 }
コード例 #13
0
 public ImplDalIndividu(string strConnection)
 {
     this.strConnection = strConnection;
     serviceConnection  = new ImplDalConnectBase(strConnection);
 }
コード例 #14
0
 public ImplDalSituationFamiliale(string strConnection)
 {
     this.serviceConnectBase = new ImplDalConnectBase(strConnection);
 }
コード例 #15
0
 public ImplDalSituationFamiliale()
 {
     this.serviceRessource   = new ImplDalServiceRessource();
     this.serviceConnectBase = new ImplDalConnectBase(this.serviceRessource.getDefaultStrConnection());
 }
コード例 #16
0
 public ImplDalParamVehicule()
 {
     this.serviceRessource  = new ImplDalServiceRessource();
     this.strConnection     = this.serviceRessource.getDefaultStrConnection();
     this.serviceConnection = new ImplDalConnectBase(strConnection);
 }
コード例 #17
0
 public ImplDalParamVehicule(string strConnection)
 {
     this.strConnection = strConnection;
     serviceConnection  = new ImplDalConnectBase(strConnection);
 }