Delete() public method

public Delete ( 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;
 }