Coding
PromptBeginner5 minmarkdown
Markdown Converter
Agent skill for markdown-converter
21
- **Target Framework**: .NET 10.0
Sign in to like and favorite skills
.editorconfig for code style settings; if none exists create from https://github.com/ardalis/CleanArchitecture/blob/main/.editorconfigNever have a model that can represent inconsistent states. For example:
public bool IsCompleted { get; set; } public DateTime? CompletedDate { get; set; }
In this case, if
CompletedDate has a value then IsCompleted must be true. Really IsCompleted could just be a computed property:
public bool IsCompleted => CompletedDate.HasValue;
OrderService_CreateOrder.csDoesSomething_GivenSomeCondition
CreateOrder_ReturnsOrder_GivenValidRequestCreateOrder_ThrowsException_GivenInvalidRequest