This commit is contained in:
FH 2022-04-07 17:39:23 +02:00
parent 789dfc49e0
commit 8896d3fdf0
4 changed files with 16 additions and 17 deletions

View file

@ -1,15 +0,0 @@
namespace FCS.Lib.Common
{
public class BaseVatInfo
{
public string Name { get; set; }
public string CoName { get; set; }
public string Address { get; set; }
public string ZipCode { get; set; }
public string City { get; set; }
public string VatNumber { get; set; }
public int VatNumberValid { get; set; }
public int HasFolded { get; set; }
public string RequestDate { get; set; }
}
}

View file

@ -44,7 +44,7 @@
<Reference Include="System.Xml" /> <Reference Include="System.Xml" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Compile Include="BaseVatInfo.cs" /> <Compile Include="VatStateInfo.cs" />
<Compile Include="VatInfoDto.cs" /> <Compile Include="VatInfoDto.cs" />
<Compile Include="VatState.cs" /> <Compile Include="VatState.cs" />
<Compile Include="LifeCycle.cs" /> <Compile Include="LifeCycle.cs" />

View file

@ -24,6 +24,7 @@
// <summary></summary> // <summary></summary>
// *********************************************************************** // ***********************************************************************
using System;
using System.Collections.Generic; using System.Collections.Generic;
namespace FCS.Lib.Common namespace FCS.Lib.Common
@ -38,6 +39,6 @@ namespace FCS.Lib.Common
public string ZipCode { get; set; } = ""; public string ZipCode { get; set; } = "";
public List<VatState> States { get; set; } = new(); public List<VatState> States { get; set; } = new();
public List<LifeCycle> LifeCycles { get; set; } = new(); public List<LifeCycle> LifeCycles { get; set; } = new();
public string RequestDate { get; set; } = ""; public string RequestDate { get; set; }
} }
} }

13
VatStateInfo.cs Normal file
View file

@ -0,0 +1,13 @@
using System;
namespace FCS.Lib.Common
{
public class VatStateInfo
{
public string Name { get; set; } = "";
public string VatNumber { get; set; } = "";
public bool VatNumberValid { get; set; }
public bool HasFolded { get; set; }
public DateTime RequestDate { get; set; }
}
}