Skip to content

Commit

Permalink
Merge pull request #409 from DFE-Digital/feature/trust-v4-endpoint
Browse files Browse the repository at this point in the history
Feature/trust v4 endpoint
  • Loading branch information
paullocknimble authored Nov 7, 2023
2 parents 0abc392 + edc5f45 commit 7ec08ef
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
32 changes: 16 additions & 16 deletions Dfe.Academies.Domain/Trust/Trust.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,22 @@ public class Trust
public long? Region { get; set; }
public long? TrustBanding { get; set; }
public long? FK_TrustStatus { get; set; }
public string GroupUID { get; set; }
public string GroupID { get; set; }
public string? GroupUID { get; set; }
public string? GroupID { get; set; }
public string? RID { get; set; }
public string Name { get; set; }
public string CompaniesHouseNumber { get; set; }
public string? Name { get; set; }
public string? CompaniesHouseNumber { get; set; }
public DateTime? ClosedDate { get; set; }
public string TrustStatus { get; set; }
public string? TrustStatus { get; set; }
public DateTime? JoinedDate { get; set; }
public string? MainPhone { get; set; }
public string AddressLine1 { get; set; }
public string? AddressLine1 { get; set; }
public string? AddressLine2 { get; set; }
public string? AddressLine3 { get; set; }
public string Town { get; set; }
public string? Town { get; set; }
public string? County { get; set; }
public string Postcode { get; set; }
public string PrioritisedForReview { get; set; }
public string? Postcode { get; set; }
public string? PrioritisedForReview { get; set; }
public string? CurrentSingleListGrouping { get; set; }
public DateTime? DateOfGroupingDecision { get; set; }
public DateTime? DateEnteredOntoSingleList { get; set; }
Expand All @@ -34,17 +34,17 @@ public class Trust
public DateTime? DateActionPlannedFor { get; set; }
public string? WIPSummaryGoesToMinister { get; set; }
public DateTime? ExternalGovernanceReviewDate { get; set; }
public string EfficiencyICFPReviewCompleted { get; set; }
public string? EfficiencyICFPReviewCompleted { get; set; }
public string? EfficiencyICFPReviewOther { get; set; }
public string LinkToWorkplaceForEfficiencyICFPReview { get; set; }
public string? LinkToWorkplaceForEfficiencyICFPReview { get; set; }
public int? NumberInTrust { get; set; }
public DateTime? Modified { get; set; }
public string ModifiedBy { get; set; }
public string AMSDTerritory { get; set; }
public string LeadAMSDTerritory { get; set; }
public string UKPRN { get; set; }
public string? ModifiedBy { get; set; }
public string? AMSDTerritory { get; set; }
public string? LeadAMSDTerritory { get; set; }
public string? UKPRN { get; set; }
public DateTime? TrustPerformanceAndRiskDateOfMeeting { get; set; }
public string UPIN { get; set; }
public string? UPIN { get; set; }
public DateTime? IncorporatedOnOpenDate { get; set; }

public TrustType TrustType { get; set; }

Check warning on line 50 in Dfe.Academies.Domain/Trust/Trust.cs

View workflow job for this annotation

GitHub Actions / build-and-test

Non-nullable property 'TrustType' must contain a non-null value when exiting constructor. Consider declaring the property as nullable.
Expand Down
2 changes: 1 addition & 1 deletion TramsDataApi.Test/integration_settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
"AllowedHosts": "*",
"ApiKeys": ["{\"userName\": \"Test User\", \"apiKey\": \"testing-api-key\"}"],
"ConnectionStrings": {
"DefaultConnection": "Server=127.0.0.1,1434;Database=sip;User Id=sa;TrustServerCertificate=True;Password=StrongPassword905"
"DefaultConnection": "Server=127.0.0.1,1433;Database=sip;User Id=sa;TrustServerCertificate=True;Password=StrongPassword905"
}
}

0 comments on commit 7ec08ef

Please sign in to comment.