public ProjectsService() { this._dbContext = new EfrDbContext(); }
/// <summary> /// Конструктор /// </summary> public GroupsService() { // при создании сервиса, сразу создаём экземпляр контекста // контекст - это по сути наш метод работы с БД this._dbContext = new EfrDbContext(); }
public StudentsService() { this._dbContext = new EfrDbContext(); this._projectsService = new ProjectsService(); this._groupsService = new GroupsService(); }