-
Notifications
You must be signed in to change notification settings - Fork 0
/
Program.cs
163 lines (134 loc) · 5.88 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
using System;
namespace BookShop
{
class Program
{
/// <summary>
/// Kitap Mağazası Uygulaması
///
/// Kitap, Kasa
///
/// 1 - kitap kayıt edebilmeyi
/// -- kayıt esnasında kitap adi, adedi, maliyet fiyati, vergisi, kazanç miktari vs.
/// -- ürün fiyati maliyet fiyati, vergi ve kazanç miktarina bağlı olarak hesaplanır
/// 2 - kitap silebilme
/// -- kita silme fonksiyonu seçilirse girilen adet kadar kitap silinecektir
/// 3 - kitap güncelleme
/// 4 - kitap satış
/// -- satılan kitap fiyatı kasaya gelir olarak giriş yapılır
/// -- satılan kitap kitap listemden eksiltilir
/// 5 - kitap listesi
/// 6 - kitap listesinden arama kabiliyeti
///
/// Kitap -> id, adi, tür'ü (enum kullanacağız), maliyet fiyati, toplam vergi, stok adedi, kayit tarihi, güncelleme tarihi
/// Kasa işlemi -> id, tür (gelir , gider (enum kullanacağım)), tutar, kayit tarihi
static void Main(string[] args)
{
int option=0;
while (option != 8)
{
Console.WriteLine("1--Kitap Ekleme");
Console.WriteLine("2--Kitap Silme");
Console.WriteLine("3--Güncelleme");
Console.WriteLine("4--Kitap Satış");
Console.WriteLine("5--Kitap Listeleme");
Console.WriteLine("6--Kitap Ara");
Console.WriteLine("7--Kasa Hareketleri");
Console.WriteLine("8--Çıkış");
option = Convert.ToInt32(Console.ReadLine());
switch (option)
{
case 1:
BookAddCase();
Console.Clear();
BookLıst();
break;
case 2:
BookLıst();
Console.Write("Silmek İstediğiniz Kitap ID'si=?");
int bookId = Convert.ToInt32(Console.ReadLine());
Book.removeBook(bookId);
Console.Clear();
BookLıst();
break;
case 3:
BookLıst();
Console.WriteLine("Güncellemek istediğiniz kitabın ıd'sini giriniz=");
int bookUptatedId = Convert.ToInt32(Console.ReadLine());
Book.bookUpdate(bookUptatedId);
break;
case 4:
BookLıst();
Console.WriteLine("Satılan kitap ID'si?");
int bookSellId = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Kaç adet Kitap Satıldı Giriniz=?");
int bookSellQty = Convert.ToInt32(Console.ReadLine());
Book.bookSell(bookSellId, bookSellQty);
break;
case 5:
BookLıst();
break;
case 6:
Console.WriteLine("Aramak istediğniz kitabın adınızı giriniz:");
string bookName = Console.ReadLine();
Book.bookSearch(bookName);
break;
case 7:
CaseTransaction.CaseTransactionLıst();
break;
default:
break;
}
}
foreach (CaseTransaction caseTransaction in CaseTransaction.CaseTransactions)
{
Console.WriteLine("Kasa Hareketleri=");
Console.WriteLine(caseTransaction.ToString());
Console.WriteLine("---------------------------------------------------------------------------------------------");
}
}
public static void BookAddCase()
{
//Kitap Ekleme
//Adı,Maliyet Fiyatı,Türü,Tax,Kazanç Miktarı,,adet
//Kitap Adı
Console.Write("Kitap Adı=");
string newBook = Console.ReadLine();
//Kitap Maliyeti
double costPrice = 0;
try
{
Console.Write("Maliyet=");
costPrice = Convert.ToDouble(Console.ReadLine());
}
catch(Exception e)
{
Console.WriteLine("Lütfen bir sayı giriniz");
}
//Kitap Türü
Console.Write("Kitap Türü(0-4)=");
BookTypesEnum bookType = (BookTypesEnum)Convert.ToInt32(Console.ReadLine());
//Vergi Oranı
Console.Write("Vergi Oranı:");
int taxPercentage = Convert.ToInt32(Console.ReadLine());
//Kazanç Oranı
Console.Write("Kazanç Oranı=");
int profitMargin = Convert.ToInt32(Console.ReadLine());
//Miktar
Console.Write("Kitabın Adedi=");
int qty = Convert.ToInt32(Console.ReadLine());
Book newBook2 = new Book(newBook, costPrice, bookType, taxPercentage, profitMargin, qty);
Book.addBook(newBook2);
}
public static void BookLıst()
{
foreach (Book item in Book.Books)
{
Console.WriteLine("---------------------------------------------------------------------------------------------");
Console.WriteLine("Kitap Listesi=");
Console.WriteLine(item.ToString());
Console.WriteLine("---------------------------------------------------------------------------------------------");
}
}
}
}