public bool ExcluirUsuario(Usuario user)
 {
     try
     {
         _usuario.Excluir(c => c == user);
         _usuario.Commit();
         return true;
     }
     catch
     {
         return false;
     }
 }
 public bool EditarUsuario(Usuario user)
 {
     try
     {
         _usuario.Atualizar(user);
         _usuario.Commit();
         return true;
     }
     catch
     {
         return false;
     }
 }
 public bool AdicionarUsuario(Usuario user)
 {
     try
     {
         _usuario.Adicionar(user);
         _usuario.Commit();
         return true;
     }
     catch (Exception ex)
     {
         return false;
     }
 }