DTML C# Coding guidelines
All code should follow SOLID Principles and require a code review before being merged into the main branch.
Couple high level guidelines which are absolutely must haves for DTML code:
Logging and telemetry.
We use log4net logger. Make sure all components have a single instance and initialized with correct type:
Throw exceptions rather than returning status value.
Log all exceptions or possible error conditions.
Be conservative with logging warnings and info messages. If you need to log BI event use notificaitonManager class rather than logger.
NotificationManager is asynchronous event processing system based on Azure Service Bus.
Use notification manager only for BI events not captured by client side Google Analytics.
Dependency injection
We use structure map for our Dependency Injection. Do not create instances of the classes directly. We use constructor based injection. Follow below pattern and Structure Map will resolve it for you.
Do not use StructureMap.Resolve() in code
Do not create instances directly
Code structure
Controllers should be very lightweight and you should never have data access code in the controller. All data access should happen in Repositories. New repositories should be created under DTML.Common SharedRepositories folder.
Code against interfaces.
Favor composition over inheritance
Views
No inline CSS styles in views. Use CSS classes.
No inline JavaScript in views. Place all JavaScript into separate files and make sure to update bundles in BundleConfig to crunch both CSS and JS.
Be aware of image sizes. Make sure to compress and minimize images
Absolutely no code duplication. Please don't copy paste same function just to change one line. On the same note, if your function is more than 30-40 lines you are doing something wrong.
Last updated