-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #144 from CSCfi/qa
TTV model update 20.5.2024
- Loading branch information
Showing
18 changed files
with
399 additions
and
97 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
32 changes: 32 additions & 0 deletions
32
aspnetcore/src/DatabaseContext/Entities/DimCallDecision.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace CSC.PublicApi.DatabaseContext.Entities | ||
{ | ||
/// <summary> | ||
/// Rahoituspäätöspaneeli | ||
/// </summary> | ||
public partial class DimCallDecision | ||
{ | ||
public DimCallDecision() | ||
{ | ||
DimFundingDecisions = new HashSet<DimFundingDecision>(); | ||
} | ||
|
||
public int Id { get; set; } | ||
public int DecisionMaker { get; set; } | ||
public int DimDateIdApproval { get; set; } | ||
public int DimCallProgrammeId { get; set; } | ||
/// <summary> | ||
/// Rahoituspäätöspaneeli - Haun vaihe | ||
/// </summary> | ||
public string CallProcessingPhase { get; set; } = null!; | ||
public string? SourceId { get; set; } | ||
public string? SourceDescription { get; set; } | ||
|
||
public virtual DimReferencedatum DecisionMakerNavigation { get; set; } = null!; | ||
public virtual DimCallProgramme DimCallProgramme { get; set; } = null!; | ||
public virtual DimDate DimDateIdApprovalNavigation { get; set; } = null!; | ||
public virtual ICollection<DimFundingDecision> DimFundingDecisions { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.