summaryrefslogtreecommitdiff
path: root/src/app/Cmpp298.Assignment3.Desktop.Presentation/INewInvoiceView.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/Cmpp298.Assignment3.Desktop.Presentation/INewInvoiceView.cs')
-rw-r--r--src/app/Cmpp298.Assignment3.Desktop.Presentation/INewInvoiceView.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/app/Cmpp298.Assignment3.Desktop.Presentation/INewInvoiceView.cs b/src/app/Cmpp298.Assignment3.Desktop.Presentation/INewInvoiceView.cs
new file mode 100644
index 0000000..9b74a93
--- /dev/null
+++ b/src/app/Cmpp298.Assignment3.Desktop.Presentation/INewInvoiceView.cs
@@ -0,0 +1,25 @@
+using Cmpp298.Assignment3.Dto;
+
+namespace Cmpp298.Assignment3.Presentation {
+ public interface INewInvoiceView {
+ void BindTo( DisplayVendorNameDto displayVendorNameDto );
+
+ IDropDownListAdapter Terms { get; }
+
+ string InvoiceNumber { get; set; }
+
+ string InvoiceDate { get; }
+
+ string InvoiceTotal { get; }
+
+ string PaymentTotal { get; }
+
+ string CreditTotal { get; }
+
+ string DueDate { get; }
+
+ string PaymentDate { get; }
+
+ void ShowError( string message );
+ }
+} \ No newline at end of file