public async Task <IActionResult> GetProductTypeById(Guid id)
 {
     return(Ok(await productTypeService.GetById(id)));
 }