diff options
Diffstat (limited to 'src/app/Cmpp298.Assignment3.Desktop.Presentation/IEditInvoiceView.cs')
| -rw-r--r-- | src/app/Cmpp298.Assignment3.Desktop.Presentation/IEditInvoiceView.cs | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/app/Cmpp298.Assignment3.Desktop.Presentation/IEditInvoiceView.cs b/src/app/Cmpp298.Assignment3.Desktop.Presentation/IEditInvoiceView.cs new file mode 100644 index 0000000..d9c195e --- /dev/null +++ b/src/app/Cmpp298.Assignment3.Desktop.Presentation/IEditInvoiceView.cs @@ -0,0 +1,25 @@ +using Cmpp298.Assignment3.Dto;
+
+namespace Cmpp298.Assignment3.Presentation {
+ public interface IEditInvoiceView {
+ IDropDownListAdapter TermsDropDown { get; }
+
+ string VendorName { get; set; }
+
+ string InvoiceNumber { get; set; }
+
+ string InvoiceDate { get; set; }
+
+ string InvoiceTotal { get; set; }
+
+ string PaymentTotal { get; set; }
+
+ string CreditTotal { get; set; }
+
+ string DueDate { get; set; }
+
+ string PaymentDate { get; set; }
+
+ void ShowError( string message );
+ }
+}
\ No newline at end of file |
