Skip to content
Eric Singleton Jr edited this page Aug 9, 2018 · 6 revisions

Developer Doc For the WA Will Clinic

This wiki is to help provide documentation for developers who contribute to the WA Will Clinc application. This will guide you through the code-base as well as explain the implementation of such features as Azure Key Vaults and Blob Storage. sections will be built out as this application is worked.



How to best use this Documentation

The sidebar will have direct links to the specific breaks and also give a hint as to how they are related within the application. Lets take a look out our Services and Implementations example. Each Service is an Interface that beneath it has the model that implements that specific Service:

  • ILawyerService
    • LawyerService

Above we have our service (interface) which is the ILawyerService and then the implementation (model) which is the LawyerService. This is to help speed up the need to skim through to specific implementations.

Each page will have a home landing page with specific table of contents links to their respective pages as well. Tutorial specific pages will be located towards the bottom of the side bar which will include both a walk through on how to set up that particular service as well as the breakdown of how it is working within this application