Ejemplo n.º 1
0
 public AllCategoryQueryHandler(ICategoryQueryRepository categoryQueryRepository)
 {
     this.categoryQueryRepository = categoryQueryRepository;
 }
Ejemplo n.º 2
0
 public GetCategoryByPartialNameQueryHandler(ICategoryQueryRepository categoryQueryRepository)
 {
     _categoryQueryRepository = categoryQueryRepository;
 }
Ejemplo n.º 3
0
 public AddCategoryCommandHandler(ICategoryCommandRepository categoryCommandRepository,
                                  ICategoryQueryRepository categoryQueryRepository)
 {
     _categoryCommandRepository = categoryCommandRepository;
     _categoryQueryRepository   = categoryQueryRepository;
 }
Ejemplo n.º 4
0
 public ParentCategoryQueryHandler(ICategoryQueryRepository repository)
 {
     this.repository = repository;
 }
Ejemplo n.º 5
0
 public GetCategoryByIdQueryHandler(ICategoryQueryRepository categoryQueryRepository)
 {
     _categoryQueryRepository = categoryQueryRepository;
 }
Ejemplo n.º 6
0
 public GetAllCategoryQueryHandler(ICategoryQueryRepository categoryQueryRepository)
 {
     _categoryQueryRepository = categoryQueryRepository;
 }
Ejemplo n.º 7
0
 public CategoryController(ICategoryQueryRepository categoryQueryRepository)
 {
     CategoryQueryRepository = categoryQueryRepository;
 }
Ejemplo n.º 8
0
 public GetCategoryAllChildsHandler(ICategoryQueryRepository categoryQueryRepository)
 {
     _categoryQueryRepository = categoryQueryRepository;
 }
Ejemplo n.º 9
0
 public ExportCategoriesToJsonQueryHandler(ICategoryQueryRepository categoryQueryRepository)
 {
     _categoryQueryRepository = categoryQueryRepository;
 }
Ejemplo n.º 10
0
 public ToDoQueryManager()
 {
     taskQueryRepository     = new TaskQueryRepository();
     categoryQueryRepository = new CategoryQueryRepository();
 }
 public GetCategoryByExactNameHandler(ICategoryQueryRepository categoryQueryRepository)
 {
     _categoryQueryRepository = categoryQueryRepository;
 }
Ejemplo n.º 12
0
 public GetCategoryBreadCrumbsQueryHandler(ICategoryQueryRepository categoryQueryRepository)
 {
     _categoryQueryRepository = categoryQueryRepository;
 }
Ejemplo n.º 13
0
 public GetCategoryAllParentsQueryHandler(ICategoryQueryRepository categoryQueryRepository)
 {
     _categoryQueryRepository = categoryQueryRepository;
 }
Ejemplo n.º 14
0
 public GetCategorySiblingsHandler(ICategoryQueryRepository categoryQueryRepository)
 {
     _categoryQueryRepository = categoryQueryRepository;
 }
Ejemplo n.º 15
0
 public GetParentCategoriesQueryHandler(ICategoryQueryRepository categoryQueryRepository)
 {
     _categoryQueryRepository = categoryQueryRepository;
 }