Buecherwurm/Administration.cs

18 lines
410 B
C#
Raw Normal View History

2020-04-23 11:27:32 +00:00
namespace Bücherwurm
{
class Administration
{
2020-04-23 13:44:38 +00:00
private Catalogue Catalogue {get; set;}
2020-04-23 12:47:50 +00:00
private Inventory Inventory {get; set;}
private Lend_Administration Lendings {get; set;}
2020-04-23 11:27:32 +00:00
public Administration()
{
2020-04-23 13:44:38 +00:00
Catalogue = new Catalogue();
2020-04-23 12:47:50 +00:00
Inventory = new Inventory();
Lendings = new Lend_Administration();
2020-04-23 11:27:32 +00:00
}
}
}