Esempio n. 1
0
 public QuestionManager(ITestingSystemContext shopContext, IMapper mapper) : base(shopContext, mapper)
 {
 }
Esempio n. 2
0
 public UserManager(ITestingSystemContext shopContext, IMapper mapper, IPasswordHasher <User> passwordHasher)
     : base(shopContext, mapper)
 {
     _passwordHasher = passwordHasher;
 }
Esempio n. 3
0
 protected BaseManager(ITestingSystemContext shopContext, IMapper mapper)
 {
     _testingSystemContext = shopContext;
     _mapper = mapper;
 }