28 lines
960 B
C#
28 lines
960 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.Serialization;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BS.Shared.DataContracts.GkvAbrechnung
|
|
{
|
|
public class GkvServerSendNewRequestDC : GkvServerRequestDC
|
|
{
|
|
public GkvServerSendNewRequestDC()
|
|
: base(RequestType.GkvServerSendNew) { }
|
|
|
|
public GkvServerSendNewRequestDC(string tenant, string username, string password)
|
|
: base(RequestType.GkvServerSendNew, tenant, username, password) { }
|
|
|
|
[DataMember] public long ApplicationUserOid { get; set; }
|
|
[DataMember] public GkvTransferProtokollDC Protokoll { get; set; }
|
|
|
|
public long Protokoll_Oid => Protokoll.GkvTransferProtokollOid.Value;
|
|
public string Datenannahmestelle => Protokoll.IKDatenannahmestelle;
|
|
public string Transfername => Protokoll.Transfername;
|
|
public string Nutzdatendatei => Protokoll.Nutzdatendatei;
|
|
public string Auftragsdatei => Protokoll.Auftragsdatei;
|
|
}
|
|
}
|