public IActionResult AddToTable([FromBody] AddToTableViewModel model)
 {
     tableService.AddProductsToTable(model.TableId, model.Products);
     return(Ok());
 }