public override async Task <Stream> Handle(GetCategoryAviconQuery query, CancellationToken cancellationToken)
 {
     return(await _imageStorage.GetImageAsync(nameof(Category), query.CategoryId, cancellationToken));
 }