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