コード例 #1
0
 public VatResolver(VatRepository vatRepository)
 {
     this.vatRepository            = vatRepository;
     this.vatCountryDataCollection = vatRepository.GetVatCountryCollection();
 }
コード例 #2
0
 public UnitTests()
 {
     vatRepository            = new VatRepository(GetMockWebData());
     vatResolver              = new VatResolver(vatRepository);
     vatCountryDataCollection = vatRepository.GetVatCountryCollection();
 }