Exemplo n.º 1
0
 public TripService(IInterviewDbContext dbContext, IMapper mapper, IAuthorizationService authorizationService)
 {
     _dbContext            = dbContext;
     _mapper               = mapper;
     _authorizationService = authorizationService;
 }
Exemplo n.º 2
0
 public CarMakeService(IInterviewDbContext dbContext, IMapper mapper)
 {
     _dbContext = dbContext;
     _mapper    = mapper;
 }