コード例 #1
0
 public List <Category> Handle(AllCategoryQuery query)
 {
     return(categoryQueryRepository.GetAll());
 }
コード例 #2
0
 public async Task <List <Category> > HandleAsync(AllCategoryQuery query)
 {
     return(await repository.GetAllAsync());
 }