public BicycleController(IUnitOfWork _unitOfWork, IBicycleService _bicycleService) { this.unitOfWork = _unitOfWork; this.bicycleService = _bicycleService; }
public BicycleController(IBicycleService bicycleService) { _bicycleService = bicycleService; }
public BicycleController(IBicycleService bicycleService, IImageService imageService) { this.bicycleService = bicycleService; this.imageService = imageService; }
public BicycleController(IBicycleService bicycleService, IBicycleTypeService bicycleTypeService, IMapper mapper) { this.bicycleService = bicycleService; this.bicycleTypeService = bicycleTypeService; this.mapper = mapper; }