public void DeleteProfile(ConnectionBuilder connection)
 {
     string statment = string.Format("delete from users where login = '******';", Login);
     try
     {
         connection.ExecuteDeleteSQL(statment);
     }
     catch(Exception e)
     {
         throw e;
     }
 }