26 lines
631 B
C#
26 lines
631 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace bsmd.database
|
|
{
|
|
/// <summary>
|
|
/// Dieses Interface wird von DatabaseEntities implementiert, die 1:n Sublisten haben
|
|
/// </summary>
|
|
public interface ISublistContainer
|
|
{
|
|
ISublistElement GetSublistElementWithIdentifier(string identifier);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Dieses Interface kennzeichnet die Merkmale eines Sublisten-Elements
|
|
/// </summary>
|
|
public interface ISublistElement
|
|
{
|
|
string Identifier { get; set; }
|
|
}
|
|
|
|
}
|