예제 #1
0
 public TripService(IInterviewDbContext dbContext, IMapper mapper, IAuthorizationService authorizationService)
 {
     _dbContext            = dbContext;
     _mapper               = mapper;
     _authorizationService = authorizationService;
 }
예제 #2
0
 public CarMakeService(IInterviewDbContext dbContext, IMapper mapper)
 {
     _dbContext = dbContext;
     _mapper    = mapper;
 }