public AccountController(IMapper mapper, IAccountRepository repository, TechAcheDbContext context, IUnitOfWork unitOfWork)
 {
     this.context    = context;
     this.unitOfWork = unitOfWork;
     this.mapper     = mapper;
     this.repository = repository;
 }
Exemple #2
0
 public QuestionController(IMapper mapper, IQuestionRepository repository, TechAcheDbContext context, IUnitOfWork unitOfWork)
 {
     this.context    = context;
     this.unitOfWork = unitOfWork;
     this.mapper     = mapper;
     this.repository = repository;
 }