Exemplo n.º 1
0
 public SendInvitationToClientWhenSubItemIsCreated(IHubContext <NotificationHub> hub, ITodoListItemRepository todoListItem, ITodoListRepository todoList, IHttpContextAccessor httpContextAccessor)
 {
     _hub                 = hub;
     _todoListItem        = todoListItem;
     _todoList            = todoList;
     _httpContextAccessor = httpContextAccessor;
 }
Exemplo n.º 2
0
 public SendNotificationWhenSubItemCompletedStateChangedHandler(IHubContext <NotificationHub> hubContext, ITodoListItemRepository todoListItem, ITodoListRepository todoList, IHttpContextAccessor httpContextAccessor)
 {
     _hubContext          = hubContext;
     _todoListItem        = todoListItem;
     _todoList            = todoList;
     _httpContextAccessor = httpContextAccessor;
 }
Exemplo n.º 3
0
 public SendNotificationToClientWhenItemLayoutIdUpdated(IHubContext <NotificationHub> context, ITodoListItemRepository todoListItem, ITodoListRepository todoList, IHttpContextAccessor httpContextAccessor)
 {
     _context             = context;
     _todoListItem        = todoListItem;
     _todoList            = todoList;
     _httpContextAccessor = httpContextAccessor;
 }
 public SendNotificationWhenSubItemMovedToTrashEventHandler(IHubContext <NotificationHub> hubContext, ITodoListItemRepository todoListItem, ITodoListRepository todoList, IHttpContextAccessor httpContextAccessor)
 {
     _hubContext             = hubContext;
     _todoListItemRepository = todoListItem;
     _todoListRepository     = todoList;
     _httpContextAccessor    = httpContextAccessor;
 }
 public SendNotificationToClientWheneverSubItemIsUpdatedHandler(IHttpContextAccessor httpContextAccessor, IHubContext <NotificationHub> hubContext, IAccountRepository account, ITodoListItemRepository todoListItem, ITodoListRepository todoList)
 {
     _httpContextAccessor = httpContextAccessor;
     _hubContext          = hubContext;
     _account             = account;
     _todoListItem        = todoListItem;
     _todoList            = todoList;
 }
 public DeleteTodoListUserStory(IAccountsListsRepository accountsListsRepository, ITodoListItemRepository todoListItem, ITodoListRepository listRepository, IAccountPlanRepository accountPlan, IAccountRepository accountRepository)
 {
     _accountsListsRepository = accountsListsRepository;
     _todoListItem            = todoListItem;
     _listRepository          = listRepository;
     _accountPlan             = accountPlan;
     _accountRepository       = accountRepository;
 }
Exemplo n.º 7
0
 public CreateItemUserStory(
     ITodoListRepository todoListRepository,
     ITodoListItemRepository todoListItemRepository,
     IAccountPlanRepository accountPlanRepository,
     IPlanRepository planRepository)
 {
     _todoListRepository     = todoListRepository;
     _todoListItemRepository = todoListItemRepository;
     _accountPlanRepository  = accountPlanRepository;
     _planRepository         = planRepository;
 }
Exemplo n.º 8
0
 public MarkItemAsImportantHandler(ITodoListItemRepository itemRepository)
 {
     _itemRepository = itemRepository;
 }
 public UpdateListItemCompletedState(ISubItemRepository subItemRepository, ITodoListItemRepository listItemRepository)
 {
     _subItemRepository  = subItemRepository;
     _listItemRepository = listItemRepository;
 }
Exemplo n.º 10
0
 public TodoListController(ITodoListItemRepository repository)
 {
     _repository = repository;
 }
Exemplo n.º 11
0
 public MarkListAsCompletedDomainEventHandler(ITodoListItemRepository itemRepository, ITodoListRepository listRepository)
 {
     _itemRepository = itemRepository;
     _listRepository = listRepository;
 }
Exemplo n.º 12
0
 public ListTrashedDomainEventHandler(ITodoListItemRepository itemRepository, ISubItemRepository subItem)
 {
     _itemRepository = itemRepository;
     _subItem        = subItem;
 }
Exemplo n.º 13
0
 public UpdateItemCompletedStateWhenSubItemTrashed(ITodoListItemRepository todoListItemRepository, ISubItemRepository subItemRepository)
 {
     _todoListItemRepository = todoListItemRepository;
     _subItemRepository      = subItemRepository;
 }
Exemplo n.º 14
0
 public UpdateHasSubItemsStateWhenSubItemCreated(ITodoListItemRepository todoListItemRepository, ISubItemRepository subItemRepository)
 {
     _todoListItemRepository = todoListItemRepository;
     _subItemRepository      = subItemRepository;
 }
 public ItemCompletedStateUserStory(ITodoListItemRepository listItemRepository)
 {
     _listItemRepository = listItemRepository;
 }
Exemplo n.º 16
0
 public UpdateHasSubItemsStateWhenSubItemMovedToTrash(ITodoListItemRepository todoListItemRepository, ISubItemRepository subItemRepository)
 {
     _todoListItemRepository = todoListItemRepository;
     _subItemRepository      = subItemRepository;
 }
Exemplo n.º 17
0
 public TrashItemUserStory(ITodoListItemRepository listItemRepository)
 {
     _listItemRepository = listItemRepository;
 }
Exemplo n.º 18
0
 public UpdateListCompletedState(ITodoListItemRepository itemRepository, ITodoListRepository listRepository)
 {
     _itemRepository = itemRepository;
     _listRepository = listRepository;
 }
Exemplo n.º 19
0
 public CreateSubItemUserStory(ITodoListItemRepository listItems, ISubItemRepository subItems)
 {
     _listItems = listItems;
     _subItems  = subItems;
 }