påbörjat hantering olika portföljer

This commit is contained in:
2021-03-13 00:08:11 +01:00
parent b4a9237290
commit b25c6fd538
18 changed files with 454 additions and 71 deletions

View File

@ -1,4 +1,5 @@
using System;
using DataDomain;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
@ -12,9 +13,16 @@ namespace StockInfo
{
public partial class frmPersonShareConnect : Form
{
public Person ConnectPerson { get; set; }
public frmPersonShareConnect()
{
InitializeComponent();
}
private void frmPersonShareConnect_Shown(object sender, EventArgs e)
{
this.Text = $"{ConnectPerson.Id} - {ConnectPerson.FirstName} {ConnectPerson.LastName}'s Shares";
this.lblShareHolder.Text = $"{ConnectPerson.FirstName} {ConnectPerson.LastName}'s Shares";
}
}
}