public Response Delete(Guid idPlayList) { bool exist = _repositoryVideo.ExistePlayListAssociada(idPlayList); if (exist) { AddNotification("PlayList", Msg.NAO_E_POSSIVEL_EXCLUIR_UMA_X0_ASSOCIADA_A_UM_X1.ToFormat("PlayList", "Video")); return(null); } PlayList playList = _repositoryPlayList.Obter(idPlayList); if (playList == null) { AddNotification("PlayList", Msg.DADOS_NAO_ENCONTRADOS); } if (this.IsInvalid()) { return(null); } _repositoryPlayList.Delete(playList); return(new Response() { Mensagem = Msg.OPERACAO_REALIZADA_COM_SUCESSO }); }
public Arguments.Base.Response DeletePlayList(Guid idPlayList) { bool existe = _repositoryVideo.ThereIsAssociatedPlayList(idPlayList); if (existe) { AddNotification("PlayList", MSG.NAO_E_POSSIVEL_EXCLUIR_UMA_X0_ASSOCIADA_A_UMA_X1.ToFormat("Playlist", "vídeo")); return(null); } PlayList playList = _repositoryPlayList.Get(idPlayList); if (playList == null) { AddNotification("PlayList", MSG.DADOS_NAO_ENCONTRADOS); } if (this.IsInvalid()) { return(null); } _repositoryPlayList.Delete(playList); return(new Response() { Message = MSG.OPERACAO_REALIZADA_COM_SUCESSO }); }