summaryrefslogtreecommitdiff
path: root/src/app/Cmpp298.Assignment3.Desktop.Presentation/IInvoicesMainView.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/Cmpp298.Assignment3.Desktop.Presentation/IInvoicesMainView.cs')
-rw-r--r--src/app/Cmpp298.Assignment3.Desktop.Presentation/IInvoicesMainView.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/app/Cmpp298.Assignment3.Desktop.Presentation/IInvoicesMainView.cs b/src/app/Cmpp298.Assignment3.Desktop.Presentation/IInvoicesMainView.cs
new file mode 100644
index 0000000..bdb3fc2
--- /dev/null
+++ b/src/app/Cmpp298.Assignment3.Desktop.Presentation/IInvoicesMainView.cs
@@ -0,0 +1,9 @@
+using System.Collections.Generic;
+using Cmpp298.Assignment3.Dto;
+
+namespace Cmpp298.Assignment3.Presentation {
+ public interface IInvoicesMainView {
+ IDropDownListAdapter VendorNames { get; }
+ void BindTo( IEnumerable< DisplayInvoiceDto > invoices );
+ }
+} \ No newline at end of file