public async Task <IActionResult> Create([FromBody] UserPerProductCreateDto model)
 {
     return(Ok(await _buyService.Create(model)));
 }