Esempio n. 1
0
        public static Post Get(int id)
        {
            var post = PostDataAccess.Get(id);

            if (post == null)
            {
                throw new Error404NotFound <Post>(id);
            }

            return(post);
        }