Пример #1
0
 public GetItemsOfTodoListFunction(IMapper mapper, IAuthService authService, ITodoItemService todoItemService, ITodoListService todoListService, ITodoListMemberService todoListMemberService)
 {
     _mapper                = mapper;
     _authService           = authService;
     _todoItemService       = todoItemService;
     _todoListService       = todoListService;
     _todoListMemberService = todoListMemberService;
 }
Пример #2
0
 public UpdateMemberShareFunction(IAuthService authService, ITodoListService todoListService, ITodoListMemberService todoListMemberService)
 {
     _authService           = authService;
     _todoListService       = todoListService;
     _todoListMemberService = todoListMemberService;
 }
Пример #3
0
 public TodoListService(ICloudTableFactory factory, ITodoListMemberService todoListMemberService, IMapper mapper, IUserService userService) : base(factory)
 {
     _todoListMemberService = todoListMemberService;
     _mapper      = mapper;
     _userService = userService;
 }
 public AddMemberToTodoListFunction(IAuthService authService, ITodoListMemberService listMemberService, ITodoListService todoListService)
 {
     _authService       = authService;
     _listMemberService = listMemberService;
     _todoListService   = todoListService;
 }
Пример #5
0
 public RemoveMemberFromTodoListFunction(IAuthService authService, ITodoListService todoListService, ITodoListMemberService todoListMemberService)
 {
     _authService           = authService;
     _todoListService       = todoListService;
     _todoListMemberService = todoListMemberService;
 }