private AdminMasterService() { connectionFactory = ConnectionHelper.GetConnection(); context = new DbContext(connectionFactory); adminRepo = new AdminRepository(context); }
public StudentService() { connectionFactory = ConnectionHelper.GetConnection(); context = new DbContext(connectionFactory); studentsRepository = new StudentsRepository(context); }