Advertisement
Guest User

Untitled

a guest
Apr 19th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. var decision = new NavetDecisionBasis()
  2. {
  3. Person = new NavetPerson()
  4. {
  5. Contact = new NavetPersonContact()
  6. {
  7. CellPhone = "",
  8. City = "Umea",
  9. Country = "Sweden",
  10. Email = "whatever@website.com",
  11. FirstName = "Viktor",
  12. LastName = "Jonsson",
  13. HomePhone = "",
  14. IsCustodian = false,
  15. Postcode = "90339",
  16. StreetAddress = "Mycelivagen 35",
  17. TempHomePhone = "",
  18. WorkPhone = ""
  19. },
  20. SocialSecurityNumber = socialSecurityNumber
  21. },
  22. Comment = "",
  23. Type = NavetMatterType.RFTJ,
  24. Conditions = new NavetCondition[] { } // conditionList.ToArray()
  25. };
  26. var docs = new NavetDocument[] { };
  27. var response = await _navetRegistrationClient.CompleteApplicationAsync(new CompleteApplicationRequest(decision, docs));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement