示例#1
0
 public PersonNameInfo(string firstName, string middleName, string lastName, string mothersName,
                       SourceIdentity sourceIdentity, string nickName) : this(firstName, middleName, lastName, sourceIdentity, nickName)
 {
     MothersName = mothersName;
     NickName    = nickName;
 }
示例#2
0
 public PersonNameInfo(string firstName, string lastName, SourceIdentity sourceIdentity)
 {
     FirstName      = firstName;
     LastName       = lastName;
     SourceIdentity = sourceIdentity;
 }
示例#3
0
 public ProviderInfo(string initials, string code, string providerTypeId, int?phone, string email, SourceIdentity sourceIdentity, PersonNameInfo personNameInfo) : this(code, sourceIdentity, personNameInfo)
 {
     Initials       = initials;
     ProviderTypeId = providerTypeId;
     Phone          = phone;
     Email          = email;
 }
示例#4
0
 public ProviderInfo(string code, SourceIdentity sourceIdentity, PersonNameInfo personNameInfo) : this(sourceIdentity, personNameInfo)
 {
     Code = code;
 }
示例#5
0
 public ProviderInfo(SourceIdentity sourceIdentity, PersonNameInfo personNameInfo)
 {
     SourceIdentity = sourceIdentity;
     PersonNameInfo = personNameInfo;
 }
示例#6
0
 public PersonNameInfo(string firstName, string middleName, string lastName, SourceIdentity sourceIdentity) : this(firstName, lastName, sourceIdentity)
 {
     MiddleName = middleName;
 }