private void ReadyToTestState(BacklogItem backlogItem) { // BacklogItem is ready to test, notify testers. foreach (var tester in backlogItem.GetBacklog().GetProject().GetTesters()) { tester.SendNotification($"Hello tester {tester.GetName()}, BacklogItem {backlogItem.GetDescription()} is ready to test"); } }