Example #1
0
        public bool Delete(int id)
        {
            bool res = false;

            if (_FamilleService.CheckFamille0_ExistFamille(id) == null)
            {
                _Famille0Service.Delete(id);
                res = true;
            }

            return(res);
        }