File tree Expand file tree Collapse file tree 4 files changed +12
-0
lines changed
ECER.Clients.RegistryPortal/ECER.Clients.RegistryPortal.Server/ICRA
ECER.Managers.Registry.Contract/ICRA
ECER.Resources.Documents/ICRA Expand file tree Collapse file tree 4 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -82,6 +82,9 @@ public record ICRAEligibility()
8282public record InternationalCertification
8383{
8484 public string ? Id { get ; set ; }
85+ public string ? OtherFirstName { get ; set ; }
86+ public string ? OtherMiddleName { get ; set ; }
87+ public string ? OtherLastName { get ; set ; }
8588 public string ? CountryId { get ; set ; }
8689 public string ? NameOfRegulatoryAuthority { get ; set ; }
8790 public string ? EmailOfRegulatoryAuthority { get ; set ; }
Original file line number Diff line number Diff line change @@ -27,6 +27,9 @@ public record ICRAEligibility()
2727public record InternationalCertification
2828{
2929 public string ? Id { get ; set ; }
30+ public string ? OtherFirstName { get ; set ; }
31+ public string ? OtherMiddleName { get ; set ; }
32+ public string ? OtherLastName { get ; set ; }
3033 public string ? CountryId { get ; set ; }
3134 public string ? NameOfRegulatoryAuthority { get ; set ; }
3235 public string ? EmailOfRegulatoryAuthority { get ; set ; }
Original file line number Diff line number Diff line change @@ -29,6 +29,9 @@ public ICRARepositoryMapper()
2929 . ForSourceMember ( s => s . Files , opts => opts . DoNotValidate ( ) )
3030 . ForSourceMember ( s => s . CountryId , opts => opts . DoNotValidate ( ) )
3131 . ForMember ( d => d . ecer_InternationalCertificationId , opts => opts . MapFrom ( s => s . Id ) )
32+ . ForMember ( d => d . ecer_OtherFirstName , opts => opts . MapFrom ( s => s . OtherFirstName ) )
33+ . ForMember ( d => d . ecer_OtherMiddleName , opts => opts . MapFrom ( s => s . OtherMiddleName ) )
34+ . ForMember ( d => d . ecer_OtherLastName , opts => opts . MapFrom ( s => s . OtherLastName ) )
3235 . ForMember ( d => d . ecer_AuthorityName , opts => opts . MapFrom ( s => s . NameOfRegulatoryAuthority ) )
3336 . ForMember ( d => d . ecer_AuthorityEmail , opts => opts . MapFrom ( s => s . EmailOfRegulatoryAuthority ) )
3437 . ForMember ( d => d . ecer_AuthorityPhone , opts => opts . MapFrom ( s => s . PhoneOfRegulatoryAuthority ) )
Original file line number Diff line number Diff line change @@ -27,6 +27,9 @@ public record ICRAEligibility()
2727public record InternationalCertification
2828{
2929 public string ? Id { get ; set ; }
30+ public string ? OtherFirstName { get ; set ; }
31+ public string ? OtherMiddleName { get ; set ; }
32+ public string ? OtherLastName { get ; set ; }
3033 public string ? CountryId { get ; set ; }
3134 public string ? NameOfRegulatoryAuthority { get ; set ; }
3235 public string ? EmailOfRegulatoryAuthority { get ; set ; }
You can’t perform that action at this time.
0 commit comments