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