XUnitDIStudy/XUnitDIStudy.Service/IStudentService.cs

13 lines
195 B
C#

using System;
using System.Collections.Generic;
using XUnitDIStudy.Model;
namespace XUnitDIStudy.Service
{
public interface IStudentService
{
List<Student> GetAll();
}
}