private void WriteCustomerInfo(UserStory userStory) { foreach (var customer in userStory.Customers) { Console.WriteLine(IndentCustomer + customer.Label); WriteNotes(customer.Notes, indent: IndentCustomer + NoteIndent); WriteAcceptanceInfo(customer); } }
public Requirement_ Requirement(string description) { var userStory = new UserStory(German.Anforderung.LabelConcept, description, _feature); _feature.AddUserStory(userStory); return new Requirement_(userStory, this); }
public Customer(string labelConcept, ICustomerDescription customerDescription, UserStory userStory) : base(labelConcept, new CamelCaseToText().GetTextCapitalized(customerDescription.GetType().Name)) { _customerDescription = customerDescription; ParentUserStory = userStory; }
public Customer(string labelConcept, string labelBody, UserStory userStory) : base(labelConcept, labelBody) { _customerDescription = new InternalDescription(); ParentUserStory = userStory; }
public Anforderung(UserStory modelUserStory, Feature parentFeature) : base(parentFeature) { _modelUserStory = modelUserStory; ParentFeature = parentFeature; }
public Requirement_(UserStory modelUserStory, Feature parentFeature) : base(parentFeature) { _modelUserStory = modelUserStory; ParentFeature = parentFeature; }