public bool ExcluirRedeSocial(RedeSocial rede) { try { _redesocial.Excluir(c => c == rede); _redesocial.Commit(); return true; } catch { return false; } }
public bool EditarRedeSocial(RedeSocial rede) { try { _redesocial.Atualizar(rede); _redesocial.Commit(); return true; } catch { return false; } }
public bool AdicionarRedeSocial(RedeSocial rede) { try { _redesocial.Adicionar(rede); _redesocial.Commit(); return true; } catch (Exception) { return false; } }