NewGaoKaoApi/New_College.Repository/BASE/IQuestionNaireRepository.cs

15 lines
316 B
C#

using New_College.IRepository.Base;
using New_College.Model.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace New_College.Repository
{
public interface IQuestionNaireRepository : IBaseRepository<QuestionNaire>
{
}
}