public async Task <ProductAttributeTypeDto> UpdateAsync(Guid id, CreateUpdateProductAttributeTypeDto input)
 {
     return(await _productAttributeTypeAppService.UpdateAsync(id, input));
 }
 public async Task <ProductAttributeTypeDto> CreateAsync(CreateUpdateProductAttributeTypeDto input)
 {
     return(await _productAttributeTypeAppService.CreateAsync(input));
 }