|
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();
|
|
}
|
|
}
|