Exemplo n.º 1
0
        public bool Delete(int id)
        {
            bool res = false;

            if (_collaborateurService.CheckCol_ExistClient(id) == false)
            {
                _collaborateurService.Delete(id);
                res = true;
            }

            return(res);
        }
        public bool Delete(int id)
        {
            bool res = false;

            if (_collaborateurService.CheckCollaborateur_ExistTiers(id) == null)
            {
                _collaborateurService.Delete(id);
                res = true;
            }

            return(res);
        }