Beispiel #1
0
 public ApiService(IMapper <TEntity, TModel> mapper, UnoTalentDbContext context)
 {
     _mapper  = mapper;
     _context = context;
 }
Beispiel #2
0
 public ApplicationService(IMapper <Application, ApplicationVm> mapper, UnoTalentDbContext context) : base(mapper, context)
 {
 }
Beispiel #3
0
 public CandidateService(IMapper <Candidate, CandidateVm> mapper, UnoTalentDbContext context) : base(mapper, context)
 {
 }
Beispiel #4
0
 public QuestionService(IMapper <Question, QuestionVm> mapper, UnoTalentDbContext context) : base(mapper, context)
 {
 }
Beispiel #5
0
 public UserService(IMapper <User, UserVm> mapper, UnoTalentDbContext context) : base(mapper, context)
 {
 }
Beispiel #6
0
 public CategoryService(IMapper <Category, CategoryVm> mapper, UnoTalentDbContext context) : base(mapper, context)
 {
 }