-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDurak.cs
More file actions
58 lines (48 loc) · 1 KB
/
Durak.cs
File metadata and controls
58 lines (48 loc) · 1 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
using System;
using System.Collections.Generic;
using System.Text;
namespace Proje3
{
class Durak
{
public String durakAdı;
public int BP;
public int TB;
public int NB;
public Durak(String durakAdı, int BP, int TB, int NB)
{
this.durakAdı = durakAdı;
this.BP = BP;
this.TB = TB;
this.NB = NB;
}
public String getDurakAdı()
{
return durakAdı;
}
public int getBP()
{
return BP;
}
public void setBP(int BP)
{
this.BP = BP;
}
public int getTB()
{
return TB;
}
public void setTB(int TB)
{
this.TB = TB;
}
public int getNB()
{
return NB;
}
public void setNB(int NB)
{
this.NB = NB;
}
}
}