24 lines
456 B
C#
24 lines
456 B
C#
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace Bücherwurm
|
||
|
{
|
||
|
class Lend_Administration
|
||
|
{
|
||
|
private List<Lending> Lendings {get; set;}
|
||
|
|
||
|
public Lend_Administration()
|
||
|
{
|
||
|
Lendings = new List<Lending>();
|
||
|
}
|
||
|
|
||
|
public void Lend(int[] ItemsIds, string Customer)
|
||
|
{
|
||
|
//TODO: implement!
|
||
|
}
|
||
|
|
||
|
public void Return(int LendID)
|
||
|
{
|
||
|
//TODO: implement!
|
||
|
}
|
||
|
}
|
||
|
}
|