Ich bin schon groß und vier, komm doch und spiel mit mir, ich lad dich ein ich bin Caillou
17 lines
357 B
C#
17 lines
357 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BS.Shared.Interface
|
|
{
|
|
public interface IOrganisation
|
|
{
|
|
string IKKrankenkasse { get; set; }
|
|
string IKKostentrager { get; set; }
|
|
string IKDatenannahmestelle { get; set; }
|
|
string BezDatenannahmestelle { get; set; }
|
|
}
|
|
}
|