Ejemplo n.º 1
0
        public CollectionDto GetCollectionByName(string name, int userId)
        {
            var collection    = _collectionRepository.GetCollectionByName(name, userId);
            var collectionDto = Mapper.Map <CollectionDto>(collection);

            return(collectionDto);
        }