コード例 #1
0
ファイル: UserResult.cs プロジェクト: benne/greenmobility
 public UserResult(int?accountType, Address address, Address billingAddress, DateTime?birthDate,
                   DrivingLicence drivingLicence, string email, bool emailConsent, IEnumerable <UserKeyValue> extendedInfo,
                   string firstName, string gender, string identificationNumber, int?identificationType, string lastName,
                   string locale, string middleName, string phoneNumber, string preferredUsername, IEnumerable <Agreement> agreements,
                   string id, int?cityId)
     : base(accountType, address, billingAddress, birthDate, drivingLicence, email, emailConsent, extendedInfo,
            firstName, gender, identificationNumber, identificationType, lastName, locale, middleName, phoneNumber,
            preferredUsername)
 {
     Agreements = agreements;
     Id         = id;
     CityId     = cityId;
 }
コード例 #2
0
 public UserData(int?accountType, Address address, Address billingAddress, DateTime?birthDate,
                 DrivingLicence drivingLicence, string email, bool emailConsent, IEnumerable <UserKeyValue> extendedInfo,
                 string firstName, string gender, string identificationNumber, int?identificationType, string lastName,
                 string locale, string middleName, string phoneNumber, string preferredUsername)
 {
     AccountType          = accountType;
     Address              = address;
     BillingAddress       = billingAddress;
     BirthDate            = birthDate;
     DrivingLicence       = drivingLicence;
     Email                = email;
     EmailConsent         = emailConsent;
     ExtendedInfo         = extendedInfo;
     FirstName            = firstName;
     Gender               = gender;
     IdentificationNumber = identificationNumber;
     IdentificationType   = identificationType;
     LastName             = lastName;
     Locale               = locale;
     MiddleName           = middleName;
     PhoneNumber          = phoneNumber;
     PreferredUsername    = preferredUsername;
 }
コード例 #3
0
 public UserRegistration(bool?dataPrivacyConsent, string login, string password, int?cityId, int?accountType,
                         Address address, Address billingAddress, DateTime birthDate, DrivingLicence drivingLicense, string email,
                         bool?emailConsent, IEnumerable <UserKeyValue> extendedInfo, string firstName, string gender, string identificationNumber,
                         int?identificationType, string lastName, string locale, string middleName, string phoneNumber, string preferredUsername)
 {
     DataPrivacyConsent = dataPrivacyConsent;
     Login                = login;
     Password             = password;
     CityId               = cityId;
     AccountType          = accountType;
     Address              = address;
     BillingAddress       = billingAddress;
     BirthDate            = birthDate;
     DrivingLicense       = drivingLicense;
     Email                = email;
     EmailConsent         = emailConsent;
     ExtendedInfo         = extendedInfo;
     FirstName            = firstName;
     Gender               = gender;
     IdentificationNumber = identificationNumber;
     IdentificationType   = identificationType;
     LastName             = lastName;
     Locale               = locale;
     MiddleName           = middleName;
     PhoneNumber          = phoneNumber;
     PreferredUsername    = preferredUsername;
 }