Пример #1
0
        public static List <BookResponse> FillBooks()
        {
            BookResponse book1 = new BookResponse()
            {
                ISBN     = "123456789",
                Author   = "Giancarlo G",
                NroPages = 210,
                Price    = 270,
                Title    = "How to Program ASP.NET MVC"
            };
            BookResponse book2 = new BookResponse()
            {
                ISBN     = "521648597",
                Author   = "Giancarlo G",
                NroPages = 3200,
                Price    = 3000,
                Title    = "How to Program C#"
            };

            responses.Add(book1);
            responses.Add(book2);
            responses.Add(null);
            return(responses);
        }
Пример #2
0
 public static void AddResponse(BookResponse response)
 {
     responses.Add(response);
 }