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