Exemplo n.º 1
0
 public ShoppingListController(IShoppingListRepo repo, IMapper mapper, IAuthorizationService authService)
 {
     _repo        = repo;
     _mapper      = mapper;
     _authService = authService;
 }
Exemplo n.º 2
0
 public UserServiceImpl(IShoppingListRepo shoppingListRepo)
 {
     _shoppingListRepo = shoppingListRepo;
 }
Exemplo n.º 3
0
 // dep injection
 public ShoppingListsController(IShoppingListRepo repository)
 {
     _repository = repository;
 }
 public CollectItems(IShoppingListRepo shoppingListRepo)
 {
 }
Exemplo n.º 5
0
 public ItemsController(IShoppingListRepo repository, IMapper mapper)
 {
     _repository = repository;
     _mapper     = mapper;
 }
 public ShoppingLists(IShoppingListRepo shoppingListRepo)
 {
     _shoppingListRepo = shoppingListRepo;
 }
 public CreateUser(IShoppingListRepo repository, IdBasedAuthenticationHandler authenticationHandler)
 {
     _repository            = repository;
     _authenticationHandler = authenticationHandler;
 }
Exemplo n.º 8
0
 public AddItems(IShoppingListRepo shoppingListRepo)
 {
     _shoppingListRepo = shoppingListRepo;
 }
Exemplo n.º 9
0
 public ProtectedController(IShoppingListRepo repository)
 {
     _repository = repository;
 }