123456789101112131415161718192021222324252627282930313233343536373839 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace JPK_VDEK.Core
- {
- public class US
- {
- private List<UsDIDIC> list;
-
- public US()
- {
- list = new List<UsDIDIC>();
- UsDIDIC d = new UsDIDIC();
- d.Kod = "0271";
- d.Describe = "DOLNOŚLĄSKI URZĄD SKARBOWY WE WROCŁAWJU";
- list.Add(d);
- d = new UsDIDIC();
- d.Kod = "0225";
- d.Describe = "URZĄD SKARBOWY WROCŁAW-KRZYKI";
- list.Add(d);
- d = new UsDIDIC();
- d.Kod = "1471";
- d.Describe = "Pierwszy Mazowiecki Urząd w Warszawie";
- list.Add(d);
- }
-
-
- public List<UsDIDIC> Lista { get { return list; } }
- }
-
- public class UsDIDIC
- {
- public String Kod { get; set; }
- public String Describe { get; set; }
- }
- }
|