Nytt sökfönster tillagt, ny metod för att söka betalningar mellan 2 datum

This commit is contained in:
2023-09-06 22:04:24 +02:00
parent 4a8fec1d5f
commit 2b6e48c3ef
11 changed files with 356 additions and 9 deletions

View File

@ -0,0 +1,29 @@
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();
}
}
}