-
Notifications
You must be signed in to change notification settings - Fork 0
/
Documento.cs
45 lines (37 loc) · 1.13 KB
/
Documento.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace csharp_biblioteca
{
internal class Documento
{
protected string ID { get; set; }
public string Titolo { get; private set; }
public string Anno { get; private set; }
public string Settore { get; private set; }
public int Scaffale { get; private set; }
public bool InPrestito { get; private set; }
public Autore Autore { get; private set; }
public Documento(string iD, string titolo, string anno, string settore, int scaffale, bool inPrestito, Autore autore)
{
ID = iD;
Titolo = titolo;
Anno = anno;
Settore = settore;
Scaffale = scaffale;
InPrestito = inPrestito;
Autore = autore;
}
public virtual string GetIdentifier()
{
return this.ID;
}
public void Stampa()
{
Console.WriteLine("id: " + this.ID);
Console.WriteLine("Titolo: " + this.Titolo);
}
}
}