private void linkLblClientInfo_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { FmClient fmClient = new FmClient(this); if (fmClient.ShowDialog() == DialogResult.OK) { ctlClient.SelectedItem = null; ctlClient.SelectedItem = fmClient.SelectedClient; } }
public FmReciept(FmClient fmClient) : this(fmClient.Employee) { ctlClient.SelectedItem = fmClient.SelectedClient; }
private void btnClient_Click(object sender, EventArgs e) { FmClient fmClient = new FmClient(employee); fmClient.ShowDialog(); }