public UserNaturalPostDTO(string email, string firstName, string lastName, DateTime birthday, CountryIso nationality, CountryIso countryOfResidence) { Email = email; FirstName = firstName; LastName = lastName; Birthday = birthday; Nationality = nationality; CountryOfResidence = countryOfResidence; }
public UboPutDTO(String firstName, String lastName, Address address, CountryIso nationality, DateTime birthday, Birthplace birthplace) { FirstName = firstName; LastName = lastName; Address = address; Nationality = nationality; Birthday = birthday; Birthplace = birthplace; }
public PayInCardWebPostDTO(string authorId, Money debitedFunds, Money fees, string creditedWalletId, string returnUrl, CountryIso culture, CardType cardType) { AuthorId = authorId; DebitedFunds = debitedFunds; Fees = fees; CreditedWalletId = creditedWalletId; ReturnURL = returnUrl; Culture = culture; CardType = cardType; }
public PayInDirectDebitPostDTO(string authorId, Money debitedFunds, Money fees, string creditedWalletId, string returnUrl, CountryIso culture, DirectDebitType directDebitType) { AuthorId = authorId; DebitedFunds = debitedFunds; Fees = fees; CreditedWalletId = creditedWalletId; ReturnURL = returnUrl; Culture = culture; DirectDebitType = directDebitType; }
public UserLegalPostDTO(string email, string name, LegalPersonType legalPersonType, string legalRepresentativeFirstName, string legalRepresentativeLastName, DateTime legalRepresentativeBirthday, CountryIso legalRepresentativeNationality, CountryIso legalRepresentativeCountryOfResidence) { Email = email; Name = name; LegalPersonType = legalPersonType; LegalRepresentativeFirstName = legalRepresentativeFirstName; LegalRepresentativeLastName = legalRepresentativeLastName; LegalRepresentativeBirthday = legalRepresentativeBirthday; LegalRepresentativeNationality = legalRepresentativeNationality; LegalRepresentativeCountryOfResidence = legalRepresentativeCountryOfResidence; }
public BankingAliasIbanPostDTO(String ownerName, CountryIso country) { OwnerName = ownerName; Country = country; }