-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathManagerService.cs
More file actions
297 lines (260 loc) · 9.75 KB
/
ManagerService.cs
File metadata and controls
297 lines (260 loc) · 9.75 KB
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
using StockMSFile.Models;
using StockMSFile.Repositories;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StockMSFile
{
public class ManagerService
{
List<Sale> sales = new List<Sale>();
ManagerRepository managerRepository;
ProductRepository productRepository;
CustomerRepository customerRepository;
string file = "C:\\Users\\Utman\\Desktop\\StockMSFile\\Files\\sales.txt";
public ManagerService()
{
ReadSalesFromFile();
managerRepository = new ManagerRepository();
productRepository = new ProductRepository();
customerRepository = new CustomerRepository();
}
private void ReadSalesFromFile()
{
try
{
if (File.Exists(file))
{
var allSales = File.ReadAllLines(file);
foreach (var sale in allSales)
{
sales.Add(Sale.ToSale(sale));
}
}
else
{
string path = "C:\\Users\\Utman\\Desktop\\StockMSFile\\Files";
Directory.CreateDirectory(path);
string fileName = "sales.txt";
string fullPath = Path.Combine(path, fileName);
using (File.Create(fullPath)) { }
}
}
catch (Exception e)
{
Console.WriteLine(e.Message);
}
}
public void FindProduct()
{
productRepository.FindProductBySKU();
}
public void FindCustomer()
{
customerRepository.FindCustomer();
}
private void AddToFile(Sale sale)
{
try
{
using (StreamWriter sr = new StreamWriter(file, true))
{
sr.WriteLine(sale.ToString());
}
}
catch (Exception e)
{
Console.WriteLine(e.Message);
}
}
public void FindStaffById(Manager admin)
{
if (IsAdmin(admin))
{
managerRepository.FindStaff();
}
else
{
Console.WriteLine("Sorry, its only admin that can find staff.");
}
}
internal void ListAllStaff(Manager admin)
{
if (IsAdmin(admin))
{
managerRepository.GetAll();
}
else
{
Console.WriteLine("Sorry, its only admin that can view staff list.");
}
}
public void ListAllProducts()
{
productRepository.GetAll();
}
public void ListAllCustomers()
{
customerRepository.ListAllCustomers();
}
private void RefreshFile()
{
try
{
using (StreamWriter sr = new StreamWriter(file))
{
foreach (var sale in sales)
{
sr.WriteLine(sale.ToString());
}
}
}
catch (Exception e)
{
Console.WriteLine(e.Message);
}
}
public void AddManager(Manager admin)
{
if(IsAdmin(admin))
{
managerRepository.AddNewManager();
}
else
{
Console.WriteLine("Sorry, its only admin that can add manager");
}
}
private bool IsAdmin(Manager admin)
{
return admin.ManagerId[0] == 'A';
}
public Manager Login()
{
return managerRepository.Login();
}
public void AddProduct(Manager admin)
{
if (IsAdmin(admin))
{
productRepository.AddNewProduct();
}
else
{
Console.WriteLine("Sorry, its only admin that can add new product.");
}
}
public void MakeSale(Manager manager)
{
Console.Write("A new customer press 1\nAn old customer press 2: ");
int val;
if(int.TryParse(Console.ReadLine(), out val))
{
switch (val)
{
case 1:
MakeNewSale(manager);
break;
case 2:
MakeNewSale(manager, false);
break;
}
}
}
private void MakeNewSale(Manager manager, bool newCustomer = true)
{
Customer customer;
if (newCustomer)
{
customer = customerRepository.AddNewCustomer();
}
else
{
Console.Write("Enter your customerId: ");
string id = Console.ReadLine();
customer = customerRepository.GetCustomerById(id);
}
if(customer != null)
{
bool error = true;
while (error)
{
var buyMore = true;
do
{
Console.WriteLine();
productRepository.GetAllProductForSale();
Console.WriteLine();
Console.Write("Enter the SKU of the product you want to buy: ");
var sku = Console.ReadLine();
Console.Write("How many? ");
var quantity = int.Parse(Console.ReadLine());
var product = productRepository.GetProductById(sku);
if (product != null && product.Quantity >= quantity)
{
error = false;
Console.WriteLine($"Total price for {quantity} - {product.Name} is: {product.SellingPrice * quantity}.");
Console.Write("Press 1 to proceed or 0 to cancil: ");
int op = int.Parse(Console.ReadLine());
if (op == 1)
{
productRepository.UpdateProductQuantity(product, quantity);
customerRepository.UpdateTotalPuchase(customer, quantity * product.SellingPrice);
var sale = new Sale(product.Name, product.SKU, quantity, product.SellingPrice, product.SellingPrice * quantity, customer.FirstName + " " + customer.LastName, manager.FirstName + " " + manager.LastName);
sales.Add(sale);
AddToFile(sale);
Console.WriteLine("Sales successful:");
//Console.WriteLine(sale.ToString());
PrintReceipt(sale);
Console.Write("Do you want to buy more goods? y for Yes and n for No: ");
var ans = Console.ReadLine().ToUpper();
if (!ans.Equals("Y"))
{
Console.WriteLine("Thanks for your patronage, please come next time...");
buyMore = false;
}
}
else
{
Console.WriteLine("Thanks for your patronage, please come next time...");
return;
}
}
else
{
Console.WriteLine($"SKU: {sku} is incorrect OR the number of the product in the store is less than {quantity}");
}
} while (buyMore);
}
}
else
{
Console.WriteLine("Can not locate or register customer, try again");
}
}
private void PrintReceipt(Sale sale)
{
Console.WriteLine("======================================================");
Console.WriteLine($"|Reference:\t\t|\t{sale.Reference}");
Console.WriteLine($"|Customer Name:\t\t|\t{sale.CustomerName}");
Console.WriteLine("|=====================================================");
Console.WriteLine($"|Product Name:\t\t|\t{sale.Name}");
Console.WriteLine("|=====================================================");
Console.WriteLine($"|SKU:\t\t\t|\t{sale.SKU}");
Console.WriteLine("|=====================================================");
Console.WriteLine($"|Quantity:\t\t|\t{sale.Quantity}");
Console.WriteLine("|=====================================================");
Console.WriteLine($"|Unit Price:\t\t|\t{sale.UnitPrice}");
Console.WriteLine("|=====================================================");
Console.WriteLine($"|Total Price:\t\t|\t{sale.TotalPrice}");
Console.WriteLine("|=====================================================");
Console.WriteLine($"|Sold By:\t\t|\t{sale.SoldBy}");
Console.WriteLine("|=====================================================");
Console.WriteLine($"|Time Sold:\t\t|\t{sale.DateSold}");
Console.WriteLine("======================================================");
}
}
}