summaryrefslogtreecommitdiff
path: root/src/app/Cmpp298.Assignment3.Desktop.Presentation/IDeleteInvoiceView.cs
blob: fb547bf8500733c53b9f10bbf2bc08bbe467a6fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace Cmpp298.Assignment3.Presentation {
	public interface IDeleteInvoiceView {
		string VendorName { set; }
		string InvoiceNumber { set; }
		string InvoiceDate { set; }
		string InvoiceTotal { set; }
		string PaymentTotal { set; }
		string CreditTotal { set; }
		string DueDate { set; }
		string PaymentDate { set; }
		string Terms { set; }
	}
}