コード例 #1
0
ファイル: ProductServiceImp.cs プロジェクト: lizhi5753186/BDF
 public GetCategoriesOutput CreateCategories(CreateCategoriesInput input)
 {
     var categoryDtos =this.PerformCreateObjects<List<CategoryDto>, CategoryDto, Category>(input.Categories, _categoryRepository);
     return new GetCategoriesOutput
     {
         Categories = categoryDtos
     };
 }
コード例 #2
0
ファイル: ProductController.cs プロジェクト: lizhi5753186/BDF
 public GetCategoriesOutput CreateCategories(CreateCategoriesInput categoriDtos)
 {
     return _productServiceImp.CreateCategories(categoriDtos);
 }