-
Notifications
You must be signed in to change notification settings - Fork 0
/
Araba.cs
54 lines (42 loc) · 1.32 KB
/
Araba.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OtoGaleriUygulamasi
{
internal class Araba
{
// Bu sınıfta araba ile ilgili özellik ve işlemler olmalı
public string Plaka { get; set; }
public string Marka { get; set; }
public float KiralamaBedeli { get; set; }
public string AracTipi { get; set; }
public string Durum { get; set; }
public List<int> KiralamaSureleri = new List<int>();
public Araba(string plaka, string marka, float kiralamaBedeli, string aractipi)
{
// parametreli bir constructor oluşturarak yeni bir araba nesnesi oluşması sağlanır.
this.Plaka = plaka;
this.Plaka = plaka;
this.Marka = marka;
this.KiralamaBedeli = kiralamaBedeli;
this.AracTipi = aractipi;
this.Durum = "Galeride";
}
public int KiralanmaSayisi
{
get
{
return this.KiralamaSureleri.Count;
}
}
public int ToplamKiralanmaSuresi
{
get
{
return this.KiralamaSureleri.Sum();
}
}
}
}