Ejemplo n.º 1
0
        public Book Fetch(int id)
        {
            var book = sql.Fetch(id);

            if (book != null)
            {
                return(book);
            }
            else
            {
                book = api.Fetch(id);
                if (book != null)
                {
                    return(book);
                }
            }

            return(null);
        }