29 lines
780 B
C#
29 lines
780 B
C#
using DataDomain;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
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";
|
|
}
|
|
}
|
|
}
|