AzureTicker.Worker.Controllers.NotificationController.RemoveExistingAccount C# (CSharp) Method

RemoveExistingAccount() private method

private RemoveExistingAccount ( string rowKey ) : bool
rowKey string
return bool
        public bool RemoveExistingAccount(string rowKey)
        {
            bool retVal = false;
            using (INotificationRepository rep = new NotificationRepository())
            {
                retVal = rep.Delete(rowKey);
                rep.SaveChanges();
            }
            return retVal;
        }