Example #1
0
 public AdvertisementService(AutomotiveMarketSystemContext context, IMapper mapper, ICarService carService)
 {
     this.context    = context;
     this.mapper     = mapper;
     this.carService = carService;
 }
Example #2
0
 public UserService(AutomotiveMarketSystemContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
Example #3
0
 public CarService(AutomotiveMarketSystemContext context, IUserService userService, IMapper mapper)
 {
     this.context     = context;
     this.userService = userService;
     this.mapper      = mapper;
 }