public Student() { if (_dbHepler == null) { _dbHepler = new DBhepler(); } }
public void SaveMore(params Student[] students) { using (DbConnection connection = new DBhepler().Connection) { for (int i = 0; i < students.Length; i++) { students[i].Save(); } } }