NewGaoKaoApi/New_College.IServices/ITopicServices.cs

13 lines
280 B
C#

using New_College.IServices.BASE;
using New_College.Model.Models;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace New_College.IServices
{
public interface ITopicServices : IBaseServices<Topic>
{
Task<List<Topic>> GetTopics();
}
}