Sök betalningar, fördela på mottagare under sökt period
This commit is contained in:
30
WinFormDi/UserControls/ucCustomerValue.cs
Normal file
30
WinFormDi/UserControls/ucCustomerValue.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user