public DOPlage(int _idPlage, string _nom, string _departement, int _commune)
        {
            _daPlage = new DAPlage();

            idPlage     = _idPlage;
            nom         = _nom;
            departement = _departement;
            commune     = _commune;
        }
        //public DOCommune commune { get; set; }

        public DOPlage()
        {
            _daPlage = new DAPlage();

            idPlage     = -1;
            nom         = null;
            departement = null;
            commune     = -1;
        }