Skip to content

Instantly share code, notes, and snippets.

@victorjonsson
Created April 10, 2019 06:03
Show Gist options
  • Save victorjonsson/8f9b5ab47c8d061297ecd36399f19060 to your computer and use it in GitHub Desktop.
Save victorjonsson/8f9b5ab47c8d061297ecd36399f19060 to your computer and use it in GitHub Desktop.
var decision = new NavetDecisionBasis()
{
Person = new NavetPerson()
{
Contact = new NavetPersonContact()
{
CellPhone = "",
City = "Umea",
Country = "Sweden",
Email = "whatever@website.com",
FirstName = "Viktor",
LastName = "Jonsson",
HomePhone = "",
IsCustodian = false,
Postcode = "90339",
StreetAddress = "Mycelivagen 35",
TempHomePhone = "",
WorkPhone = ""
},
SocialSecurityNumber = socialSecurityNumber
},
Comment = "",
Type = NavetMatterType.RFTJ,
Conditions = new NavetCondition[] { } // conditionList.ToArray()
};
var docs = new NavetDocument[] { };
var response = await _navetRegistrationClient.CompleteApplicationAsync(new CompleteApplicationRequest(decision, docs));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment