コード例 #1
0
        public async Task Create(CategoryDto category)
        {
            var result = CategoryMapper.MapCreate(category);

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