-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CSCTTV-3637 automatic publishing new orcid data (#234)
* Modify profile settings handling. Add setting to automatically publish new ORCID data. * TTV model update 15.5.2024 (#232) * TTV model update 20.5.2024 (#233) * TTV model update 15.5.2024 (#232)
- Loading branch information
Showing
23 changed files
with
2,370 additions
and
1,998 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace api.Models.Ttv; | ||
|
||
/// <summary> | ||
/// Rahoituspäätöspaneeli | ||
/// </summary> | ||
public partial class DimCallDecision | ||
{ | ||
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; } | ||
|
||
public string SourceId { get; set; } | ||
|
||
public string SourceDescription { get; set; } | ||
|
||
public virtual DimReferencedatum DecisionMakerNavigation { get; set; } | ||
|
||
public virtual DimCallProgramme DimCallProgramme { get; set; } | ||
|
||
public virtual DimDate DimDateIdApprovalNavigation { get; set; } | ||
|
||
public virtual ICollection<DimFundingDecision> DimFundingDecisions { get; set; } = new List<DimFundingDecision>(); | ||
} |
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.