Sök betalningar, fördela på mottagare under sökt period

This commit is contained in:
2023-09-12 22:12:45 +02:00
parent 2b6e48c3ef
commit de6e196809
8 changed files with 356 additions and 16 deletions

View File

@ -0,0 +1,30 @@
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 WinFormDi.UserControls
{
public partial class ucCustomerValue : UserControl
{
public ucCustomerValue()
{
InitializeComponent();
}
private void btnShowMore_Click(object sender, EventArgs e)
{
}
public string Receiver { get => lblCustName.Text; set => lblCustName.Text = value; }
public string Number { get => lblNumberof.Text; set => lblNumberof.Text = value; }
public string Amount { get => lblAmount.Text; set => lblAmount.Text = value; }
}
}