public CollectionCollectablesController(ICollectionCollectableService collectableService,
                                         ICollectionService collectionService, IMapper mapper)
 {
     _collectableService = collectableService;
     _collectionService  = collectionService;
     _mapper             = mapper;
 }
 public CollectionCollectableServiceTests()
 {
     _collectionCollectableService = new CollectionCollectableService(_unitOfWork);
     resourceParameters            = new CollectionCollectablesResourceParameters();
 }