diff options
Diffstat (limited to 'src/app/Cmpp298.Assignment3.Task/IVendorTask.cs')
| -rw-r--r-- | src/app/Cmpp298.Assignment3.Task/IVendorTask.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/app/Cmpp298.Assignment3.Task/IVendorTask.cs b/src/app/Cmpp298.Assignment3.Task/IVendorTask.cs new file mode 100644 index 0000000..56900e8 --- /dev/null +++ b/src/app/Cmpp298.Assignment3.Task/IVendorTask.cs @@ -0,0 +1,9 @@ +using System.Collections.Generic;
+using Cmpp298.Assignment3.Dto;
+
+namespace Cmpp298.Assignment3.Task {
+ public interface IVendorTask {
+ IEnumerable< IDropDownListItem > GetAllVendorNames( );
+ DisplayVendorNameDto FindVendorNameBy( string vendorId );
+ }
+}
\ No newline at end of file |
