feat(fundamentals): preserve ticker selection and add deterministic key executives sorting

This commit is contained in:
2026-08-15 19:30:04 +02:00
parent 960a4bdbd6
commit 7e18257e3e
11 changed files with 942 additions and 235 deletions
@@ -1,4 +1,4 @@
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace FinlyticFundamentals.Entities;
@@ -10,6 +10,7 @@ public class KeyExecutiveEntity
public string Name { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public string Payment { get; set; } = string.Empty;
public int SortOrder { get; set; } = 0;
[Required] public string AssetDataIsin { get; set; } = string.Empty;