public IActionResult GetEstablishmentsForStore([FromRoute] int storeId)
 {
     return(Ok(_establishmentRepository.GetForStore(storeId)));
 }