public async Task <IActionResult> DeleteProductById(string id)
 {
     return(Ok(await _repository.Delete(id)));
 }