summaryrefslogtreecommitdiff
path: root/src/app/Cmpp298.Assignment3.Desktop.Presentation/IDeleteInvoiceView.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/Cmpp298.Assignment3.Desktop.Presentation/IDeleteInvoiceView.cs')
-rw-r--r--src/app/Cmpp298.Assignment3.Desktop.Presentation/IDeleteInvoiceView.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/app/Cmpp298.Assignment3.Desktop.Presentation/IDeleteInvoiceView.cs b/src/app/Cmpp298.Assignment3.Desktop.Presentation/IDeleteInvoiceView.cs
new file mode 100644
index 0000000..fb547bf
--- /dev/null
+++ b/src/app/Cmpp298.Assignment3.Desktop.Presentation/IDeleteInvoiceView.cs
@@ -0,0 +1,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; }
+ }
+} \ No newline at end of file