示例#1
0
 public List <Comic> GetBooks(int seriesId, int typeId, int limit, int offset)
 {
     return(_repository.GetBooks(seriesId, typeId, limit, offset)
            .Select(b => _mapper.Map(b))
            .ToList());
 }