Skip to content

Commit

Permalink
TD-4632 Resolved git action warning
Browse files Browse the repository at this point in the history
  • Loading branch information
sherif-olaboye committed Nov 5, 2024
1 parent 78b6e4a commit f8ca071
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ public interface ICentresDataService
string centreStatus);
IEnumerable<CentreSummaryForFindYourCentre> GetAllCentreSummariesForFindCentre();

CentreSummaryForContactDisplay GetCentreSummaryForContactDisplay(int centreId);
CentreSummaryForContactDisplay? GetCentreSummaryForContactDisplay(int centreId);

CentreSummaryForRoleLimits GetRoleLimitsForCentre(int centreId);
CentreSummaryForRoleLimits? GetRoleLimitsForCentre(int centreId);

void UpdateCentreRoleLimits(
int centreId,
Expand Down Expand Up @@ -368,7 +368,7 @@ FROM Centres AS c
);
}

public CentreSummaryForContactDisplay GetCentreSummaryForContactDisplay(int centreId)
public CentreSummaryForContactDisplay? GetCentreSummaryForContactDisplay(int centreId)
{
return connection.QueryFirstOrDefault<CentreSummaryForContactDisplay>(
@"SELECT CentreID,CentreName,pwTelephone AS Telephone,pwEmail AS Email,pwWebURL AS WebUrl,pwHours AS Hours
Expand Down Expand Up @@ -739,7 +739,7 @@ public void ReactivateCentre(int centreId)
);
}

public CentreSummaryForRoleLimits GetRoleLimitsForCentre(int centreId)
public CentreSummaryForRoleLimits? GetRoleLimitsForCentre(int centreId)
{
return connection.QueryFirstOrDefault<CentreSummaryForRoleLimits>(
@"SELECT CentreId,
Expand Down

0 comments on commit f8ca071

Please sign in to comment.