30 lines
713 B
C#
30 lines
713 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;
|
|
using WinFormDiApp.BLI;
|
|
|
|
namespace WinFormDiApp
|
|
{
|
|
public partial class frmSearchData : Form
|
|
{
|
|
private readonly IAccountRecordRepository _accountRecordRepository;
|
|
|
|
public frmSearchData(IAccountRecordRepository accountRecordRepository)
|
|
{
|
|
InitializeComponent();
|
|
_accountRecordRepository = accountRecordRepository;
|
|
}
|
|
|
|
private void btnClose_Click(object sender, EventArgs e)
|
|
{
|
|
this.Close();
|
|
}
|
|
}
|
|
}
|