blob: 9ed735f31bfd1df261eb300edcfdbdc53780f149 (
plain)
1
2
3
4
5
6
7
8
|
using System.Collections.Generic;
using Cmpp298.Assignment3.Dto;
namespace Cmpp298.Assignment3.Task {
public interface ITermTask {
IEnumerable< IDropDownListItem > GetAll( );
}
}
|