Buecherwurm/Administration.cs

18 lines
402 B
C#
Raw Normal View History

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