29 lines
555 B
C#
29 lines
555 B
C#
|
#region Ressources extérieures
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text;
|
||
|
#endregion
|
||
|
|
||
|
namespace ProjetTheAlone.Gestion
|
||
|
{
|
||
|
public class G_Base
|
||
|
{
|
||
|
#region Données membres
|
||
|
string _ChaineConnexion;
|
||
|
#endregion
|
||
|
#region Constructeurs
|
||
|
public G_Base()
|
||
|
{ ChaineConnexion = ""; }
|
||
|
public G_Base(string sChaineConnexion)
|
||
|
{ ChaineConnexion = sChaineConnexion; }
|
||
|
#endregion
|
||
|
#region Accesseur
|
||
|
public string ChaineConnexion
|
||
|
{
|
||
|
get { return _ChaineConnexion; }
|
||
|
set { _ChaineConnexion = value; }
|
||
|
}
|
||
|
#endregion
|
||
|
}
|
||
|
}
|