Esempio n. 1
0
 public ItemService(
     ISecondhandContext secondhandContext,
     IItemRepository itemRepository,
     IUserRepository userRepository)
 {
     _secondhandContext = secondhandContext;
     _itemRepository    = itemRepository;
     _userRepository    = userRepository;
 }
Esempio n. 2
0
 public UserRepository(ISecondhandContext secondhandContext)
 {
     _secondhandContext = secondhandContext;
 }
Esempio n. 3
0
 public ItemRepository(ISecondhandContext secondhandContext)
 {
     _secondhandContext = secondhandContext;
 }