public IdResponse Post([FromBody] CreateSubCategoryCommand command)
 {
     return(_subCategoryFacade.CreateSubCategory(command));
 }
Exemplo n.º 2
0
 public IdResponse CreateSubCategory(CreateSubCategoryCommand command)
 {
     return(_bus.Dispatch <CreateSubCategoryCommand, IdResponse>(command));
 }