public IActionResult DeleteFollowedTeamToLogedUser(string teamId) { try { CreateSession(); teamServices.DeleteFollowedTeam(teamId); return(Ok()); } catch (ServicesException e) { return(BadRequest(e.Message)); } }