예제 #1
0
 public BicycleController(IUnitOfWork _unitOfWork, IBicycleService _bicycleService)
 {
     this.unitOfWork     = _unitOfWork;
     this.bicycleService = _bicycleService;
 }
예제 #2
0
 public BicycleController(IBicycleService bicycleService)
 {
     _bicycleService = bicycleService;
 }
 public BicycleController(IBicycleService bicycleService, IImageService imageService)
 {
     this.bicycleService = bicycleService;
     this.imageService   = imageService;
 }
예제 #4
0
 public BicycleController(IBicycleService bicycleService, IBicycleTypeService bicycleTypeService, IMapper mapper)
 {
     this.bicycleService = bicycleService;
     this.bicycleTypeService = bicycleTypeService;
     this.mapper = mapper;
 }