依赖注入
程序员文章站
2022-03-09 10:40:42
...
Model
创建IStudentRepository
public interface IStudentRepository//加public,默认私有
{
public Student Add(Student student);
public Student GetStudent(int id);
}
上一篇: 剑指offer 53 -||. 0~n-1中缺失的数字
下一篇: 依赖注入2 优势 生命周期