コード例 #1
0
 public IList <CollectionDto> GetAll() => CollectionRepsoitory.GetAll().Select(Mapper.Map <CollectionDto>).ToList();
コード例 #2
0
 public CollectionDto GetById(Guid collectionId) => Mapper.Map <CollectionDto>(CollectionRepsoitory.GetById(collectionId));