Skip to content

Commit

Permalink
Fixed nullable property which was not nullable
Browse files Browse the repository at this point in the history
also add another missing dependency
  • Loading branch information
FirestarJes committed Sep 12, 2024
1 parent a790227 commit c7345ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
namespace Energinet.DataHub.SettlementReport.Interfaces.SettlementReports_v2.Models;

public sealed record RequestedSettlementReportDto(
SettlementReportRequestId? RequestId,
SettlementReportRequestId RequestId,
CalculationType CalculationType,
DateTimeOffset PeriodStart,
DateTimeOffset PeriodEnd,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ public static IServiceCollection AddSettlementReportApiModule(this IServiceColle
services.AddScoped<IGetSettlementReportsHandler, GetSettlementReportsHandler>();
services.AddScoped<IRemoveExpiredSettlementReports, RemoveExpiredSettlementReports>();
services.AddScoped<IDatabricksJobsHelper, DatabricksJobsHelper>();
services.AddScoped<ISettlementReportInitializeHandler, SettlementReportInitializeHandler>();
services.AddSettlementReportBlobStorage();

// Database Health check
Expand Down

0 comments on commit c7345ba

Please sign in to comment.