-
Notifications
You must be signed in to change notification settings - Fork 0
/
Member.cs
37 lines (33 loc) · 893 Bytes
/
Member.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LibrarySystem
{
class Member
{
public string name { get; }
public int age { get; }
public int num_borrowed { get; set; }
public Member(string name, int age, int num_borrowed=0)
{
this.name = name;
this.age = age;
this.num_borrowed = num_borrowed;
}
public override string ToString()
{
Console.WriteLine($"Name: {name} Age: {age} Books borrowed: {num_borrowed}\n\n");
return $"Name: {name} age: {age} Books borrowed: {num_borrowed}";
}
public void ReturnItem()
{
num_borrowed--;
}
public void BorrowItem()
{
num_borrowed++;
}
}
}