NewGaoKaoApi/New_College.IServices/ITopicDetailServices.cs

13 lines
304 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 ITopicDetailServices : IBaseServices<TopicDetail>
{
Task<List<TopicDetail>> GetTopicDetails();
}
}