AzureTicker.Worker.Controllers.NotificationController.RemoveExistingAccount C# (CSharp) Метод

RemoveExistingAccount() приватный Метод

private RemoveExistingAccount ( string rowKey ) : bool
rowKey string
Результат bool
        public bool RemoveExistingAccount(string rowKey)
        {
            bool retVal = false;
            using (INotificationRepository rep = new NotificationRepository())
            {
                retVal = rep.Delete(rowKey);
                rep.SaveChanges();
            }
            return retVal;
        }