public void StaffAdd(string username, string password, string nume)
        {
            Staff staff = new Staff(username, password, nume);

            if (sdr.Save(staff) == null)
            {
                throw new Exception("Exista deja un membru al staffului cu acest cont!");
            }
        }