示例#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();
 }