public override bool DeleteUser(string username, bool deleteAllRelatedData)
 {
     bool res = false;
     using (Database db = new MySqlDatabase())
     {
         res = db.DeleteUser(username, _applicationName, deleteAllRelatedData);
     }
     return res;
 }