public IActionResult GetChannels(int id) { if (!ModelState.IsValid) { return(BadRequest()); } return(Ok(channelHandler.GetChannels(id))); }