-
Notifications
You must be signed in to change notification settings - Fork 0
/
Katalog.cs
79 lines (69 loc) · 1.85 KB
/
Katalog.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
using System;
using System.Collections.Generic;
namespace Zadanie_3
{
class Katalog : IZarzPoz
{
public Pozycja SzukajPoTytule(string tytul)
{
Pozycja wynikpotytule = null;
foreach (Pozycja pozycja in pozycje)
{
if (pozycja.Tytul == tytul)
{
wynikpotytule = pozycja;
break;
}
}
if (wynikpotytule != null)
{
return wynikpotytule;
}
else
{
return null;
}
}
public Pozycja SzukajPoID(int id)
{
Pozycja wynikpoID = null;
foreach (Pozycja pozycja in pozycje)
{
if (pozycja.ID == id)
{
wynikpoID = pozycja;
break;
}
}
if (wynikpoID != null)
{
return wynikpoID;
}
else
{
return null;
}
}
public void WypiszWszystkiePozycje()
{
foreach (Pozycja pozycja in pozycje)
{
Console.WriteLine("Tytuł: " + pozycja.Tytul + " ID: " + pozycja.ID + " Wydawnictwo: " + pozycja.Wydawnictwo + " Rok wydania: " + pozycja.RokWydania);
}
}
public string dzialTematyczny { get; set; }
public string DzialTematyczny { get => dzialTematyczny; }
public List<Pozycja> pozycje = new List<Pozycja>();
public Katalog()
{
}
public Katalog(string dzialTematyczny_)
{
this.dzialTematyczny = dzialTematyczny_;
}
public void DodajPozycje(Pozycja pozycja)
{
pozycje.Add(pozycja);
}
}
}