Example #1
0
        public override int GetHashCode()
        {
            var hash = 13;

            hash += 7 * NPI.GetHashCode();
            hash += 7 * SiteName.GetHashCode();

            return(hash);
        }
Example #2
0
        public void UpdateBasicInfo(string accountName, string npi, int taxID, string website)
        {
            GotoPracticeSettings();

            Edit.Click();

            WaitForElementVisible <BasicInfo>(30);

            ClearAll <BasicInfo>(this);

            AccountName.SendKeys(accountName);
            NPI.SendKeys(npi);
            TaxID.SendKeys(taxID.ToString());
            Website.SendKeys(website);

            State.Select("Alabama");

            Save.Click();

            Assert.AreEqual("Account details updated successfully", Toastr.Text);
        }