using System;
using System.Collections.Generic;

using XUnitDIStudy.Model;

namespace XUnitDIStudy.Service
{
    public interface IStudentService
    {
        List<Student> GetAll();
    }
}