Пример #1
0
 private SupplierInfo GetSupplierInfo()
 {
     return(new SupplierInfo(
                taxpayerId: TaxpayerIdentificationNumber.Create(Countries.Hungary, "14750636").Success.Get(),
                vatCode: VatCode.Create("2").Success.Get(),
                name: Name.Create("BUDAPESTI MSZAKI S GAZDASGTUDOMNYI EGYETEM").Success.Get(),
                address: GetAddress()
                ));
 }
Пример #2
0
 private SupplierInfo CreateSupplierInfo()
 {
     return(new SupplierInfo(
                taxpayerId: TestFixture.TaxPayerId,
                vatCode: VatCode.Create("2").Success.Get(),
                name: Name.Create("Supplier company").Success.Get(),
                address: CreateAddress(Countries.Hungary)
                ));
 }