コード例 #1
0
        public new bool Remover(Editora editora)
        {
            if (_livroRepositorio.ExisteComEditora(editora.EditoraId))
            {
                return(false);
            }

            _editoraRepositorio.Remover(editora);

            return(true);
        }