예제 #1
0
        public SingleResult <BookRetrieveModel> GetBook([FromODataUri] Guid key)
        {
            IQueryable <BookRetrieveModel> result = _filterService.GetBookById(key);

            return(SingleResult.Create(result));
        }