15 lines
316 B
C#
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>
|
|
{
|
|
}
|
|
}
|