public IActionResult GetEstablishmentsForUser([FromRoute] int userId)
 {
     return(Ok(_establishmentRepository.GetForUser(userId)));
 }