Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 656 Bytes

README.md

File metadata and controls

13 lines (9 loc) · 656 Bytes

api

.NET Core

The api

Coding Conventions

  • 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 of string).