42 lines
820 B
C#
42 lines
820 B
C#
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 AyaNovaQBI
|
|
{
|
|
public partial class ApproveCompanyFile : Form
|
|
{
|
|
public ApproveCompanyFile()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
private string _CompanyName;
|
|
private string _CompanyPath;
|
|
public string QBCompanyName
|
|
{
|
|
set
|
|
{
|
|
_CompanyName = value;
|
|
}
|
|
}
|
|
public string QBCompanyPath
|
|
{
|
|
set
|
|
{
|
|
_CompanyPath = value;
|
|
}
|
|
}
|
|
private void ApproveCompanyFile_Load(object sender, EventArgs e)
|
|
{
|
|
this.lblCompany.Text = _CompanyName;
|
|
this.lblPath.Text = _CompanyPath;
|
|
}
|
|
}
|
|
}
|