The api
- During this project we will be using C# Google Style guide + brackets on a newline.
- In a simplified clean architecture design.
- Returning a null value is forbidden. You can return for example
Enumerable.Empty<T>()
or a default value. - Prefer to use the Empty method on types to return empty variables.
- Use the object representation type instead of primitive ones (
String
instead ofstring
).