Esempio n. 1
0
 public IList <CollectionDto> GetAll() => CollectionRepsoitory.GetAll().Select(Mapper.Map <CollectionDto>).ToList();
Esempio n. 2
0
 public CollectionDto GetById(Guid collectionId) => Mapper.Map <CollectionDto>(CollectionRepsoitory.GetById(collectionId));