Brak opisu

US.cs 941B

123456789101112131415161718192021222324252627282930313233343536373839
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace JPK_VDEK.Core
  7. {
  8. public class US
  9. {
  10. private List<UsDIDIC> list;
  11. public US()
  12. {
  13. list = new List<UsDIDIC>();
  14. UsDIDIC d = new UsDIDIC();
  15. d.Kod = "0271";
  16. d.Describe = "DOLNOŚLĄSKI URZĄD SKARBOWY WE WROCŁAWJU";
  17. list.Add(d);
  18. d = new UsDIDIC();
  19. d.Kod = "0225";
  20. d.Describe = "URZĄD SKARBOWY WROCŁAW-KRZYKI";
  21. list.Add(d);
  22. d = new UsDIDIC();
  23. d.Kod = "1471";
  24. d.Describe = "Pierwszy Mazowiecki Urząd w Warszawie";
  25. list.Add(d);
  26. }
  27. public List<UsDIDIC> Lista { get { return list; } }
  28. }
  29. public class UsDIDIC
  30. {
  31. public String Kod { get; set; }
  32. public String Describe { get; set; }
  33. }
  34. }