Buecherwurm/Administration.cs
2020-04-23 15:44:38 +02:00

18 lines
410 B
C#

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