Skip to content

1.3.0

Compare
Choose a tag to compare
@hkutluay hkutluay released this 26 Oct 14:46
· 6 commits to master since this release
30448c8

Implicit value assignment support added by @mzuvin

Implicit

UUID = Guid.NewGuid().ToString(),
UBLVersionID ="2.1",
CustomizationID = "TR1.2",
ProfileID ="TEMELFATURA",
ID = "INV20200000000001",
CopyIndicator = false

Explicit

UUID = new UblTr.Common.UUIDType() { Value = Guid.NewGuid().ToString() },
UBLVersionID = new UblTr.Common.UBLVersionIDType() { Value = "2.1" },
CustomizationID = new UblTr.Common.CustomizationIDType() { Value = "TR1.2" },
ProfileID = new UblTr.Common.ProfileIDType() { Value = "TEMELFATURA" },
ID = new UblTr.Common.IDType() { Value = "INV20200000000001" },
CopyIndicator = new UblTr.Common.CopyIndicatorType() { Value = false }