public async Task Create(CategoryDto category)
        {
            var result = CategoryMapper.MapCreate(category);

            await this.unitOfWork.CategoryRepository.Create(result);
        }