-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProgram.cs
83 lines (72 loc) · 2.02 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
namespace DesignPatterns.MVC;
public class Book
{
public int Id { get; set; }
public string Title { get; set; }
public string Author { get; set; }
public override string ToString() => $"ID: {Id}, Title: {Title}, Author: {Author}";
}
public class BookView
{
public void DisplayBooks(List<Book> books)
{
Console.WriteLine("\nBook List:");
if (!books.Any())
{
Console.WriteLine("No books available.");
return;
}
books.ForEach(Console.WriteLine);
}
public Book GetBookDetails()
{
Console.Write("Enter book title: ");
string title = Console.ReadLine();
Console.Write("Enter book author: ");
string author = Console.ReadLine();
return new Book { Title = title, Author = author };
}
}
public class BookController(BookView view)
{
List<Book> books = new();
int nextId = 1;
public void AddBook()
{
Book newBook = view.GetBookDetails();
newBook.Id = nextId++;
books.Add(newBook);
Console.WriteLine("Book added successfully!");
}
public void ShowBooks() => view.DisplayBooks(books);
}
class Program
{
static void Main()
{
BookView view = new BookView();
BookController controller = new BookController(view);
while (true)
{
Console.WriteLine("\n1. Add Book");
Console.WriteLine("2. List Books");
Console.WriteLine("3. Exit");
Console.Write("Your choice: ");
string choice = Console.ReadLine();
switch (choice)
{
case "1":
controller.AddBook();
break;
case "2":
controller.ShowBooks();
break;
case "3":
return;
default:
Console.WriteLine("Invalid choice, please try again.");
break;
}
}
}
}