Skip to content

Commit 06321f0

Browse files
committed
ECER-5270: Merge Conflicts resolved
1 parent 23fe1da commit 06321f0

File tree

5 files changed

+6
-17
lines changed

5 files changed

+6
-17
lines changed

src/ECER.Clients.RegistryPortal/ECER.Clients.RegistryPortal.Server/ICRA/ICRAEligibilitiesEndpoints.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public record InternationalCertification
8585
public string? OtherFirstName { get; set; }
8686
public string? OtherMiddleName { get; set; }
8787
public string? OtherLastName { get; set; }
88-
public bool? CertificateHasOtherName { get; set; }
88+
public bool HasOtherName { get; set; }
8989
public string? CountryId { get; set; }
9090
public string? NameOfRegulatoryAuthority { get; set; }
9191
public string? EmailOfRegulatoryAuthority { get; set; }

src/ECER.Managers.Registry.Contract/ICRA/Contract.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public record InternationalCertification
3030
public string? OtherFirstName { get; set; }
3131
public string? OtherMiddleName { get; set; }
3232
public string? OtherLastName { get; set; }
33-
public bool? CertificateHasOtherName { get; set; }
33+
public bool HasOtherName { get; set; }
3434
public string? CountryId { get; set; }
3535
public string? NameOfRegulatoryAuthority { get; set; }
3636
public string? EmailOfRegulatoryAuthority { get; set; }
@@ -41,7 +41,7 @@ public record InternationalCertification
4141
public string? CertificateTitle { get; set; }
4242
public DateTime? IssueDate { get; set; }
4343
public DateTime? ExpiryDate { get; set; }
44-
public IEnumerable<ECER.Managers.Registry.Contract.Applications.FileInfo> Files { get; set; } = Array.Empty<ECER.Managers.Registry.Contract.Applications.FileInfo>();
44+
public IEnumerable<Applications.FileInfo> Files { get; set; } = Array.Empty<ECER.Managers.Registry.Contract.Applications.FileInfo>();
4545
public IEnumerable<string> DeletedFiles { get; set; } = Array.Empty<string>();
4646
public IEnumerable<string> NewFiles { get; set; } = Array.Empty<string>();
4747
}

src/ECER.Resources.Documents/ICRA/ICRARepositoryMapper.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public ICRARepositoryMapper()
3030
.ForMember(d => d.ecer_OtherFirstName, opts => opts.MapFrom(s => s.OtherFirstName))
3131
.ForMember(d => d.ecer_OtherMiddleName, opts => opts.MapFrom(s => s.OtherMiddleName))
3232
.ForMember(d => d.ecer_OtherLastName, opts => opts.MapFrom(s => s.OtherLastName))
33-
.ForMember(d => d.ecer_CertificateHasOtherName, opts => opts.MapFrom(s => s.CertificateHasOtherName))
33+
.ForMember(d => d.ecer_CertificateHasOtherName, opts => opts.MapFrom(s => s.HasOtherName))
3434
.ForMember(d => d.ecer_AuthorityName, opts => opts.MapFrom(s => s.NameOfRegulatoryAuthority))
3535
.ForMember(d => d.ecer_AuthorityEmail, opts => opts.MapFrom(s => s.EmailOfRegulatoryAuthority))
3636
.ForMember(d => d.ecer_AuthorityPhone, opts => opts.MapFrom(s => s.PhoneOfRegulatoryAuthority))
@@ -46,7 +46,7 @@ public ICRARepositoryMapper()
4646
.ForMember(d => d.OtherFirstName, opts => opts.MapFrom(s => s.ecer_OtherFirstName))
4747
.ForMember(d => d.OtherMiddleName, opts => opts.MapFrom(s => s.ecer_OtherMiddleName))
4848
.ForMember(d => d.OtherLastName, opts => opts.MapFrom(s => s.ecer_OtherLastName))
49-
.ForMember(d => d.CertificateHasOtherName, opts => opts.MapFrom(s => s.ecer_CertificateHasOtherName))
49+
.ForMember(d => d.HasOtherName, opts => opts.MapFrom(s => s.ecer_CertificateHasOtherName))
5050
.ForMember(d => d.CountryId, opts => opts.MapFrom(s => s.ecer_Country != null ? s.ecer_Country.Id.ToString() : null))
5151
.ForMember(d => d.NameOfRegulatoryAuthority, opts => opts.MapFrom(s => s.ecer_AuthorityName))
5252
.ForMember(d => d.EmailOfRegulatoryAuthority, opts => opts.MapFrom(s => s.ecer_AuthorityEmail))

src/ECER.Resources.Documents/ICRA/IICRARepository.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public record InternationalCertification
3030
public string? OtherFirstName { get; set; }
3131
public string? OtherMiddleName { get; set; }
3232
public string? OtherLastName { get; set; }
33-
public bool? CertificateHasOtherName { get; set; }
33+
public bool HasOtherName { get; set; }
3434
public string? CountryId { get; set; }
3535
public string? NameOfRegulatoryAuthority { get; set; }
3636
public string? EmailOfRegulatoryAuthority { get; set; }

src/ECER.Utilities.DataverseSdk/Model/EcerContext.cs

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -535,17 +535,6 @@ public System.Linq.IQueryable<ECER.Utilities.DataverseSdk.Model.ecer_ICRAEligibi
535535
}
536536
}
537537

538-
/// <summary>
539-
/// Gets a binding to the set of all <see cref="ECER.Utilities.DataverseSdk.Model.ecer_ICRARegulatedJurisdictions"/> entities.
540-
/// </summary>
541-
public System.Linq.IQueryable<ECER.Utilities.DataverseSdk.Model.ecer_ICRARegulatedJurisdictions> ecer_ICRARegulatedJurisdictionsSet
542-
{
543-
get
544-
{
545-
return this.CreateQuery<ECER.Utilities.DataverseSdk.Model.ecer_ICRARegulatedJurisdictions>();
546-
}
547-
}
548-
549538
/// <summary>
550539
/// Gets a binding to the set of all <see cref="ECER.Utilities.DataverseSdk.Model.ecer_identificationtype"/> entities.
551540
/// </summary>

0 commit comments

Comments
 (0)