Example #1
0
 public ItemPhotosController(IItemPhotoRepository repository, IMapper mapper)
 {
     _itemPhotoRepository = repository;
     _mapper = mapper;
 }
Example #2
0
 public ItemPhotosController(IItemPhotoRepository itemsPhotoRepository)
 {
     this.itemsPhotoRepository = itemsPhotoRepository;
 }