public static StudentsDatabase GetInstance()
 {
     if (_instance == null)
         _instance = new StudentsDatabase();
     return (StudentsDatabase)_instance;
 }
 public SqlHelper(StudentsDatabase db)
 {
     this._db = db;
 }