public async Task Put(Guid id, ProductViewModel model)
 {
     model.Id = id;
     await _facadeService.Modify(model);
 }