Buecherwurm/Administration.cs
2020-04-23 14:47:50 +02:00

18 lines
402 B
C#

namespace Bücherwurm
{
class Administration
{
private Catalogue Books {get; set;}
private Inventory Inventory {get; set;}
private Lend_Administration Lendings {get; set;}
public Administration()
{
Books = new Catalogue();
Inventory = new Inventory();
Lendings = new Lend_Administration();
}
}
}